summaryrefslogtreecommitdiff
path: root/include/makeinclude/wrapper_macros.GNU
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-06 02:06:18 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-06-06 02:06:18 +0000
commite10ccbfb1bc4bafc16be7f4cc86cd853217bb8d7 (patch)
tree27a1923a4af3b346c418cc4c75293460ef10b6c2 /include/makeinclude/wrapper_macros.GNU
parent3dc5e894096f32b4b9379b3aae9a6515e6783184 (diff)
downloadATCD-e10ccbfb1bc4bafc16be7f4cc86cd853217bb8d7.tar.gz
ChangeLogTag: Mon Jun 05 20:59:42 2000 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'include/makeinclude/wrapper_macros.GNU')
-rw-r--r--include/makeinclude/wrapper_macros.GNU8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index eabadcf23b8..6f470a7929b 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -127,8 +127,12 @@
#### Default to building shared libraries only. Set it here to give the
#### platform a chance to override.
-shared_libs = 1
-static_libs = 0
+ifeq ($(shared_libs),)
+ shared_libs = 1
+endif # shared_libs
+ifeq ($(static_libs),)
+ static_libs = 0
+endif # static_libs
#### Let platform just look at whether or not exceptions is defined.
#### With the following override, it doesn't have to check for 0.