diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-06 02:06:18 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-06 02:06:18 +0000 |
commit | e10ccbfb1bc4bafc16be7f4cc86cd853217bb8d7 (patch) | |
tree | 27a1923a4af3b346c418cc4c75293460ef10b6c2 /include/makeinclude/wrapper_macros.GNU | |
parent | 3dc5e894096f32b4b9379b3aae9a6515e6783184 (diff) | |
download | ATCD-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.GNU | 8 |
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. |