From: Vikram S. Adve Date: Wed, 17 Oct 2001 12:33:55 +0000 (+0000) Subject: Allow only extra Source files to be listed in a local Makefile. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c4bed346ece5f6c6967a1c002f04fa25d6042b38;p=oota-llvm.git Allow only extra Source files to be listed in a local Makefile. Needed for automatically generated .cpp files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@853 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.common b/Makefile.common index 0d4cfb6ba1b..d1fd8e70ea9 100644 --- a/Makefile.common +++ b/Makefile.common @@ -78,9 +78,9 @@ MakeLib = $(AR) # Source includes all of the cpp files, and objects are derived from the # source files... -ifndef Source -Source = $(wildcard *.cpp *.c *.y *.l) -endif +# The local Makefile can list other Source files via Source = ... +# +Source := $(Source) $(wildcard *.cpp *.c *.y *.l) Objs = $(sort $(addsuffix .o,$(basename $(Source)))) ObjectsO = $(addprefix Release/,$(Objs)) diff --git a/Makefile.rules b/Makefile.rules index 0d4cfb6ba1b..d1fd8e70ea9 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -78,9 +78,9 @@ MakeLib = $(AR) # Source includes all of the cpp files, and objects are derived from the # source files... -ifndef Source -Source = $(wildcard *.cpp *.c *.y *.l) -endif +# The local Makefile can list other Source files via Source = ... +# +Source := $(Source) $(wildcard *.cpp *.c *.y *.l) Objs = $(sort $(addsuffix .o,$(basename $(Source)))) ObjectsO = $(addprefix Release/,$(Objs))