# # TCP++ Interface to the Makefile Configuration System, as # described and available at # # http://amira.zib.de/make/ # # This Makefile interfaces with Cactus' (www.cactuscode.org) make system, # such that TCP++ appears as a thorn in Cactus, but as an application # component within the makefile configuration system (e.g. a library). # # $Revision: 1.3 $ # $Date: 2000-02-03 13:28:43 $ # $Log: not supported by cvs2svn $ # Revision 1.2 2000/02/03 11:03:17 werner # requires temporary hack # # Revision 1.1 2000/01/11 15:55:59 werner # Windows Compliance, added WinDLL API. # # Revision 1.1 1999/11/25 11:26:10 bzfgrafs # . # # Revision 1.1 1999/09/09 19:14:14 werner # TCP++ library can be used as cactus thorn and as application component (e.g. for # use within ZIB's Amira) # # # include $(VPATH)src/make.code.defn CC_OBJS = $(addprefix src/,$(SRCS:.cpp=.$O)) OBJS = $(subst .c,.$O,$(CC_OBJS)) TARGET = IEEEIO PACKAGE = IEEEIO SUBDIRS=src all.dtor=remove-config visible include $(VPATH)../GNUmakefile.rules # # Add a variable to the makefile configuration # # (comment: Using AMIRA_ROOT is not good here, better to introduce some # make variable for this. Will be done soon. Werner) # ifdef AMIRA_ROOT TARGET_FLAGS=-I$$(MAKE_LOCAL)/external/IEEEIO/src -I$$(MAKE_ROOT)/external/IEEEIO/src else TARGET_FLAGS=-I$$(MAKE_LOCAL)/IEEEIO/src -I$$(MAKE_ROOT)/IEEEIO/src endif