aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.deps
diff options
context:
space:
mode:
authortradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-05-17 11:32:11 +0000
committertradke <tradke@ebee0441-1374-4afa-a3b5-247f3ba15b9a>2000-05-17 11:32:11 +0000
commit812dbfc9e6ece16f1c7d51e30491057863073dd4 (patch)
treeb6007855051df6238cd955acfd953d76ae4ea584 /src/make.configuration.deps
parent05519b321d7931eebd34f2246fd2ed54442481aa (diff)
The rules for building the IEEEIO recombiner.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IOFlexIO/trunk@127 ebee0441-1374-4afa-a3b5-247f3ba15b9a
Diffstat (limited to 'src/make.configuration.deps')
-rw-r--r--src/make.configuration.deps10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/make.configuration.deps b/src/make.configuration.deps
new file mode 100644
index 0000000..a574ce8
--- /dev/null
+++ b/src/make.configuration.deps
@@ -0,0 +1,10 @@
+$(UTIL_DIR)$(DIRSEP)ieee_recombiner: $(BUILD_DIR)$(DIRSEP)IOFlexIO$(DIRSEP)ieee_recombiner.o
+ @echo Creating ieee_recombiner in $(UTIL_DIR) from $<
+ if [ ! -d $(UTIL_DIR) ]; then $(MKDIR) $(MKDIRFLAGS) $(UTIL_DIR) ; fi
+ $(LD) $(CREATEEXE)$(OPTIONSEP)$@ $(DEBUG_LD) $(LDFLAGS) $(EXTRAFLAGS) -L$(CCTK_LIBDIR) $< -lIEEEIO
+
+$(BUILD_DIR)$(DIRSEP)IOFlexIO$(DIRSEP)ieee_recombiner.o: $(PACKAGE_DIR)$(DIRSEP)CactusPUGHIO$(DIRSEP)IOFlexIO$(DIRSEP)src$(DIRSEP)util$(DIRSEP)ieee_recombiner.c
+ @echo Compiling $<
+ if [ ! -d $(BUILD_DIR)$(DIRSEP)IOFlexIO ]; then $(MKDIR) $(MKDIRFLAGS) $(BUILD_DIR)$(DIRSEP)IOFlexIO ; fi
+ cd $(BUILD_DIR)$(DIRSEP)IOFlexIO
+ $(CC) $< -DCCODE $(CFLAGS) -I$(CONFIG) -I$(BINDINGS_DIR)$(DIRSEP)include -I$(FLESH_DIR)$(DIRSEP)include -I$(IEEEIO_INCLUDE_PATH) $(CCOMPILEONLY)$(OPTIONSEP)$@