Allow directories to specify that they want to be built as a shared object by default

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3027 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-07-23 19:21:31 +00:00
parent e58a01fc5d
commit edf1f23e53
2 changed files with 10 additions and 0 deletions

View File

@ -29,6 +29,11 @@
#ENABLE_PURIFY = 1
#ENABLE_OPTIMIZED = 1
ifdef SHARED_LIBRARY
# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
dynamic ::
endif
# Default Rule: Make sure it's also a :: rule
all ::

View File

@ -29,6 +29,11 @@
#ENABLE_PURIFY = 1
#ENABLE_OPTIMIZED = 1
ifdef SHARED_LIBRARY
# if SHARED_LIBRARY is specified, the default is to build the dynamic lib
dynamic ::
endif
# Default Rule: Make sure it's also a :: rule
all ::