aboutsummaryrefslogtreecommitdiff
path: root/src/make.code.deps
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-04-02 18:25:48 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-04-02 18:25:48 +0000
commit8d6781e6c7c7ddf8c549019a8c4c11ad18987e89 (patch)
treef15dbd25099f009b69f01e89b28f36f04ad221ac /src/make.code.deps
parentabe332db19896e7a172261cf24f4d705fb2a2803 (diff)
Convert helper programmes from C to perl to make them more portable.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@71 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/make.code.deps')
-rw-r--r--src/make.code.deps29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/make.code.deps b/src/make.code.deps
deleted file mode 100644
index 71e8266..0000000
--- a/src/make.code.deps
+++ /dev/null
@@ -1,29 +0,0 @@
-# make.code.deps file for thorn Formaline -*-Makefile-*-
-# $Header$
-
-# Create the "makeblob" utility whenever this thorn is compiled.
-# Store it in the scratch directory of this configuration.
-
-# This has to live here in the file make.code.deps instead of in the
-# file make.configuration.deps because only here the location of the
-# source file makeblob.c is known.
-
-TARBALL_DIR = $(SCRATCH_BUILD)
-
-$(CCTK_TARGET): $(TARBALL_DIR)/makeblob $(TARBALL_DIR)/makemetablob
-
-
-
-$(TARBALL_DIR)/makeblob: $(TARBALL_DIR)/makeblob.o
- cd $(TARBALL_DIR) && $(LD) $(LDFLAGS) -o $@ $^
-
-$(TARBALL_DIR)/makeblob.o: $(SRCDIR)/util/makeblob.c
- cd $(TARBALL_DIR) && $(CC) $(CFLAGS) -c $^
-
-
-
-$(TARBALL_DIR)/makemetablob: $(TARBALL_DIR)/makemetablob.o
- cd $(TARBALL_DIR) && $(LD) $(LDFLAGS) -o $@ $^
-
-$(TARBALL_DIR)/makemetablob.o: $(SRCDIR)/util/makemetablob.c
- cd $(TARBALL_DIR) && $(CC) $(CFLAGS) -c $^