diff options
author | Chris Lattner <sabre@nondot.org> | 2002-03-08 23:20:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-03-08 23:20:52 +0000 |
commit | c1e20acc68aab02bef240fd5f13cef9762900d7a (patch) | |
tree | 075e7ac4cb35abb5067807f8a725c0c8b3be1679 /runtime/Makefile | |
parent | 665ee88504ae8e4440fd1609f3d88c3481cebe12 (diff) | |
download | external_llvm-c1e20acc68aab02bef240fd5f13cef9762900d7a.zip external_llvm-c1e20acc68aab02bef240fd5f13cef9762900d7a.tar.gz external_llvm-c1e20acc68aab02bef240fd5f13cef9762900d7a.tar.bz2 |
Checkin library infrastructure for building stuff to be linked with
gccld
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/Makefile')
-rw-r--r-- | runtime/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/runtime/Makefile b/runtime/Makefile index 5bf2cbf..2fad228 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -1,4 +1,13 @@ +# Libraries Makefile: Build all subdirectories automatically -all:: +LEVEL = ../.. +DIRS := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */)))) + +include ${LEVEL}/Makefile.common + +# Install target for libraries: Copy into the gcc install directory in chris's +# tree... +# +install:: clean:: |