[llvm-commits] [TV] r79260 - /television/trunk/Makefile.common
Misha Brukman
brukman+llvm at gmail.com
Mon Aug 17 11:11:11 PDT 2009
Author: brukman
Date: Mon Aug 17 13:11:11 2009
New Revision: 79260
URL: http://llvm.org/viewvc/llvm-project?rev=79260&view=rev
Log:
We want to set ProjLibs* and ProjUsedLibs options, not ExtraLibs.
Modified:
television/trunk/Makefile.common
Modified: television/trunk/Makefile.common
URL: http://llvm.org/viewvc/llvm-project/television/trunk/Makefile.common?rev=79260&r1=79259&r2=79260&view=diff
==============================================================================
--- television/trunk/Makefile.common (original)
+++ television/trunk/Makefile.common Mon Aug 17 13:11:11 2009
@@ -7,14 +7,10 @@
#
#===------------------------------------------------------------------------===#
-#
# Include the local config file
-#
include $(LEVEL)/Makefile.config
-#
# Include LLVM's Master Makefile.
-#
include $(LLVM_SRC_ROOT)/Makefile.rules
# Make sure we can access PoolAlloc's headers and libraries
@@ -29,5 +25,7 @@
PAUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(PALIBS)))
PALibsPaths := $(addprefix $(PALibDir)/,$(PAUsedLibs))
-ExtraLibs += $(PALibsPaths)
+ProjLibsOptions += $(PALibsOptions)
+ProjLibsPaths += $(PALibsPaths)
+ProjUsedLibs += $(PAUsedLibs)
endif
More information about the llvm-commits
mailing list