aboutsummaryrefslogtreecommitdiff
path: root/src/make.code.deps
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-03-10 18:12:39 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2008-03-10 18:12:39 +0000
commit9cbf586eb3a7bb7a57f23045cce2f4331a40f526 (patch)
tree21354efaaa9e9449f10c1e94bb48d5ad3fff97a6 /src/make.code.deps
parentf86b918f68263eb829e9c4728599fbf176d5e9fd (diff)
Change git repository structure.
Introduce one repository per configuration, so that many fewer git-add and git-remove are necessary, speeding up things considerably. Move the main git repository into a subdirectory of the main Cactus directory. Lock the git repository before calling git, so that parallel make works. git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@171 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/make.code.deps')
-rw-r--r--src/make.code.deps6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/make.code.deps b/src/make.code.deps
index 7f48ec8..7eb710f 100644
--- a/src/make.code.deps
+++ b/src/make.code.deps
@@ -8,7 +8,7 @@
TARBALL_DIR = $(SCRATCH_BUILD)
-$(CCTK_TARGET): $(TARBALL_DIR)/gethostname.pl $(TARBALL_DIR)/makeblob.pl $(TARBALL_DIR)/makemetablob.pl $(TARBALL_DIR)/git-commit.pl
+$(CCTK_TARGET): $(TARBALL_DIR)/gethostname.pl $(TARBALL_DIR)/makeblob.pl $(TARBALL_DIR)/makemetablob.pl $(SCRATCH_BUILD)/git-lock.pl
@@ -21,5 +21,5 @@ $(TARBALL_DIR)/makeblob.pl: $(SRCDIR)/util/makeblob.pl
$(TARBALL_DIR)/makemetablob.pl: $(SRCDIR)/util/makemetablob.pl
cd $(TARBALL_DIR) && cp $^ $@
-$(TARBALL_DIR)/git-commit.pl: $(SRCDIR)/util/git-commit.pl
- cd $(TARBALL_DIR) && cp $^ $@
+$(SCRATCH_BUILD)/git-lock.pl: $(SRCDIR)/util/git-lock.pl
+ cd $(SCRATCH_BUILD) && cp $^ $@