summaryrefslogtreecommitdiff
path: root/lib/make/make.config.defn.in
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-04-08 17:29:01 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-04-08 17:29:01 +0000
commit00daa44a6f60753c72f333c8010740f5baa99ca1 (patch)
tree2f85b761004e714e9ae01fccae8d4a8db1486c69 /lib/make/make.config.defn.in
parent16b9a330295465a8f8b6c3990678aab66b57c7ba (diff)
Most compilers use -c -o for compile only and put object file in a
particular place, but some don't. Now the options are held in make variables, and a known-architectures, or setup options script can set these appropriately. Currently they default to -c -o . Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@457 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.config.defn.in')
-rw-r--r--lib/make/make.config.defn.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/make/make.config.defn.in b/lib/make/make.config.defn.in
index e21ac104..41b38aea 100644
--- a/lib/make/make.config.defn.in
+++ b/lib/make/make.config.defn.in
@@ -34,6 +34,10 @@ LDFLAGS = @LDFLAGS@
ARFLAGS = @ARFLAGS@
+# Most compilers use -c -o to compile only, some do something different
+CCOMPILEONLY = @CCOMPILEONLY@
+FCOMPILEONLY = @FCOMPILEONLY@
+
# Library info
LIBS = @LIBS@