aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-07-18 08:11:24 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2006-07-18 08:11:24 +0000
commit4a4304aa65d4aa2b92700aa90c10e99ed75e8a3a (patch)
tree81237fbdfe90b05d36d9ed1adc4d5a92812a03d1
parentfc3c59e8dad9476c97d58dd89024f222abaa76bd (diff)
Remove duplicate code.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@101 83718e91-0e4f-0410-abf4-91180603181f
-rw-r--r--src/make.code.deps24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/make.code.deps b/src/make.code.deps
index 04c3713..89707d1 100644
--- a/src/make.code.deps
+++ b/src/make.code.deps
@@ -21,27 +21,3 @@ $(TARBALL_DIR)/makeblob.pl: $(SRCDIR)/util/makeblob.pl
$(TARBALL_DIR)/makemetablob.pl: $(SRCDIR)/util/makemetablob.pl
cd $(TARBALL_DIR) && cp $^ $@
-
-
-
-
-
-
-# Unique ID for the build
-$(TARBALL_DIR)/build-id.o: $(TARBALL_DIR)/build-id.c
- $(CC) $(CFLAGS) -c -o $@ $^
-
-# (force a new ID to be created every time)
-.PHONY: $(TARBALL_DIR)/build-id.c
-$(TARBALL_DIR)/build-id.c:
- { \
- echo '/* This is an auto-generated file -- do not edit */'; \
- hostname=`hostname`; \
- user="$$USER"; \
- timestamp=`date +%Y%m%d-%H%M%S`; \
- pid="$$$$"; \
- id="build-$$hostname-$$user-$$timestamp-$$pid"; \
- echo 'char const build_id[] = "'$$id'";'; \
- } > $@
-
-.PRECIOUS: $(TARBALL_DIR)/build-id.c $(TARBALL_DIR)/build-id.o