diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-27 23:43:28 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-27 23:43:28 +0000 |
commit | b562b47deeb163d3c854b2d9670bf38a37b7816e (patch) | |
tree | a4e6067f87d0dea811acf602cdd32f84590630e8 /runtime | |
parent | 0c80be59c7ccbd844b5dee71b038090052cac07b (diff) | |
download | external_llvm-b562b47deeb163d3c854b2d9670bf38a37b7816e.zip external_llvm-b562b47deeb163d3c854b2d9670bf38a37b7816e.tar.gz external_llvm-b562b47deeb163d3c854b2d9670bf38a37b7816e.tar.bz2 |
Don't build runtime libraries in an Apple style build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/Makefile b/runtime/Makefile index a1b89af..6e25967 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -7,6 +7,8 @@ # ##===----------------------------------------------------------------------===## +ifndef NO_RUNTIME_LIBS + LEVEL = .. include $(LEVEL)/Makefile.config @@ -22,3 +24,4 @@ include $(LEVEL)/Makefile.common install:: +endif |