summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-01-29 18:52:31 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-01-29 18:52:31 +0000
commit333f4a24b2f7d9fe2d8c4705b216e1aeedb06730 (patch)
treed72a9c3b6dc4a0c41e02b6b3390f2d45fd0077ee
parent6496a56eeed223684954328f6a43b6fb805047ea (diff)
Use the $(LD) variable as the linker !
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@151 17b73243-c579-4c4c-a9d2-2d5706c11dac
-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 2bdfde45..3888295b 100644
--- a/lib/make/make.configuration
+++ b/lib/make/make.configuration
@@ -39,7 +39,7 @@ $(EXE): $(CONFIG)/make.thornlist $(patsubst %,$(CCTK_LIBDIR)/lib%.a,$(notdir $(T
@echo $(DIVIDER)
@echo Creating $(EXE) from $(THORNS)
$(CC) -c $(DATESTAMP) -o $(TOP)/datestamp.o
- $(CC) -o $@ $(LDFLAGS) $(TOP)/datestamp.o -L$(CCTK_LIBDIR) $(addprefix -l,$(notdir $(THORNS))) -lCactus -lCactusBindings -lCactus $(LIBDIRS:%=-L%) $(LIBS:%=-l%)
+ $(LD) -o $@ $(LDFLAGS) $(TOP)/datestamp.o -L$(CCTK_LIBDIR) $(addprefix -l,$(notdir $(THORNS))) -lCactus -lCactusBindings -lCactus $(LIBDIRS:%=-L%) $(LIBS:%=-l%)
@echo $(DIVIDER)
@echo All done !
@echo $(DIVIDER)