summaryrefslogtreecommitdiff
path: root/lib/make/make.configuration
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-22 18:36:51 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-22 18:36:51 +0000
commit47aba9fbf561e62304273c4ad80094060b8a70ff (patch)
tree42e78ed1f89366f17baaae2de15400b7e02f6770 /lib/make/make.configuration
parentb5d5b12012dcfb1e48e47fc0bf27bd6150a1a28d (diff)
Added CFLAGS to compilation of datestamp.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@330 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.configuration')
-rw-r--r--lib/make/make.configuration2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/make.configuration b/lib/make/make.configuration
index b37a8d0e..24de4178 100644
--- a/lib/make/make.configuration
+++ b/lib/make/make.configuration
@@ -49,7 +49,7 @@ endif
$(EXE): $(CONFIG)/make.thornlist $(patsubst %,$(CCTK_LIBDIR)/lib%.a,$(notdir $(THORNS))) $(CCTK_LIBDIR)/libCactus.a $(CCTK_LIBDIR)/libCactusBindings.a
@echo $(DIVIDER)
@echo Creating $(EXE) from $(THORNS)
- $(CC) -c $(DATESTAMP) -o $(TOP)/datestamp.o
+ $(CC) $(CFLAGS) -c $(DATESTAMP) -o $(TOP)/datestamp.o
$(LD) -o $@ $(LDFLAGS) $(EXTRAFLAGS) $(TOP)/datestamp.o -L$(CCTK_LIBDIR) -lCactus -lCactusBindings $(addprefix -l,$(notdir $(THORNS))) $(addprefix -l,$(notdir $(THORNS))) -lCactus $(LIBDIRS:%=-L%) $(LIBS:%=-l%)
@echo $(DIVIDER)
@echo All done !