diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-08 20:12:46 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-08 20:12:46 +0000 |
commit | b5da7465b7809b33bb8b5011ecc3c0c0e39a6537 (patch) | |
tree | 0e45a10296f97c24a5c9dcde45db11ac92dc520f /runtime/Makefile | |
parent | 550728488020a2aa8a601c55d3ada69df069ab13 (diff) | |
download | external_llvm-b5da7465b7809b33bb8b5011ecc3c0c0e39a6537.zip external_llvm-b5da7465b7809b33bb8b5011ecc3c0c0e39a6537.tar.gz external_llvm-b5da7465b7809b33bb8b5011ecc3c0c0e39a6537.tar.bz2 |
Simplify makefiles by just explicitly listing directories
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/Makefile')
-rw-r--r-- | runtime/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/Makefile b/runtime/Makefile index d8bc24a..a5d3d81e 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -10,11 +10,12 @@ LEVEL = .. include $(LEVEL)/Makefile.config + ifneq ($(wildcard $(LLVMGCCDIR)),) -PARALLEL_DIRS := $(sort $(filter-out Makefile, $(filter-out README.txt, $(filter-out Output, $(filter-out CVS, $(notdir $(wildcard $(SourceDir)/*))))))) +PARALLEL_DIRS := GCCLibraries libdummy libprofile libtrace else PARALLEL_DIRS := -all :: +install all :: @echo '********' Warning: Your LLVMGCCDIR is set incorrectly. Double-check @echo '********' Warning: llvm/Makefile.config to make sure it matches @echo '********' Warning: the directory where the C front-end is installed, |