summaryrefslogtreecommitdiff
path: root/lib/make/make.config.defn.in
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-25 13:14:27 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-25 13:14:27 +0000
commit8c84992e4a8e819d1cfe2a4afb9c22e1c5795646 (patch)
tree1def9ac9fc498a64948111188d639efc0a60fc9d /lib/make/make.config.defn.in
parent43a2bde763fdb832d169ce5109879f3f61ebae2d (diff)
A few more changes to help supprt NT.
NOTE: you will need to do a reconfig after this. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@578 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.config.defn.in')
-rw-r--r--lib/make/make.config.defn.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/make/make.config.defn.in b/lib/make/make.config.defn.in
index 41b38aea..734a0fe3 100644
--- a/lib/make/make.config.defn.in
+++ b/lib/make/make.config.defn.in
@@ -38,6 +38,9 @@ ARFLAGS = @ARFLAGS@
CCOMPILEONLY = @CCOMPILEONLY@
FCOMPILEONLY = @FCOMPILEONLY@
+# Most compilers use -o for naming the executable, alas some don't
+CREATEEXE = @CREATEEXE@
+
# Library info
LIBS = @LIBS@
@@ -65,6 +68,9 @@ CST = @CST@
C_FILE_PROCESSOR = @C_FILE_PROCESSOR@
F_FILE_PROCESSOR = @F_FILE_PROCESSOR@
+# The directory in which to place the executable
+EXEDIR = @EXEDIR@
+
# The name of the executable
-EXE = @EXE@
+EXE = $(EXEDIR)/@EXE@