Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===# |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | 3876aa7 | 2007-12-29 20:11:13 +0000 | [diff] [blame] | 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 7 | # |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 8 | #===------------------------------------------------------------------------===# |
| 9 | # |
| 10 | # This file is included by all of the LLVM makefiles. For details on how to use |
| 11 | # it properly, please see the document MakefileGuide.html in the docs directory. |
| 12 | # |
| 13 | #===-----------------------------------------------------------------------====# |
| 14 | |
| 15 | ################################################################################ |
| 16 | # TARGETS: Define standard targets that can be invoked |
| 17 | ################################################################################ |
| 18 | |
| 19 | #-------------------------------------------------------------------- |
| 20 | # Define the various target sets |
| 21 | #-------------------------------------------------------------------- |
Daniel Dunbar | 4f1c655 | 2009-09-13 22:39:27 +0000 | [diff] [blame] | 22 | RecursiveTargets := all clean clean-all install uninstall install-bytecode \ |
| 23 | unitcheck |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 24 | LocalTargets := all-local clean-local clean-all-local check-local \ |
| 25 | install-local printvars uninstall-local \ |
Daniel Dunbar | 4f1c655 | 2009-09-13 22:39:27 +0000 | [diff] [blame] | 26 | install-bytecode-local |
Chris Lattner | 4259606 | 2007-09-26 06:10:47 +0000 | [diff] [blame] | 27 | TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \ |
Bill Wendling | 2e3646a | 2009-01-04 23:12:21 +0000 | [diff] [blame] | 28 | dist-zip unittests |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 29 | UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets) |
| 30 | InternalTargets := preconditions distdir dist-hook |
| 31 | |
| 32 | ################################################################################ |
| 33 | # INITIALIZATION: Basic things the makefile needs |
| 34 | ################################################################################ |
| 35 | |
| 36 | #-------------------------------------------------------------------- |
| 37 | # Set the VPATH so that we can find source files. |
| 38 | #-------------------------------------------------------------------- |
| 39 | VPATH=$(PROJ_SRC_DIR) |
| 40 | |
| 41 | #-------------------------------------------------------------------- |
| 42 | # Reset the list of suffixes we know how to build. |
| 43 | #-------------------------------------------------------------------- |
| 44 | .SUFFIXES: |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 45 | .SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 46 | .SUFFIXES: $(SHLIBEXT) $(SUFFIXES) |
| 47 | |
| 48 | #-------------------------------------------------------------------- |
| 49 | # Mark all of these targets as phony to avoid implicit rule search |
| 50 | #-------------------------------------------------------------------- |
| 51 | .PHONY: $(UserTargets) $(InternalTargets) |
| 52 | |
| 53 | #-------------------------------------------------------------------- |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 54 | # Make sure all the user-target rules are double colon rules and |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 55 | # they are defined first. |
| 56 | #-------------------------------------------------------------------- |
| 57 | |
| 58 | $(UserTargets):: |
| 59 | |
| 60 | ################################################################################ |
| 61 | # PRECONDITIONS: that which must be built/checked first |
| 62 | ################################################################################ |
| 63 | |
| 64 | SrcMakefiles := $(filter %Makefile %Makefile.tests,\ |
| 65 | $(wildcard $(PROJ_SRC_DIR)/Makefile*)) |
| 66 | ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles)) |
| 67 | ConfigureScript := $(PROJ_SRC_ROOT)/configure |
| 68 | ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status |
| 69 | MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in)) |
| 70 | MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in)) |
| 71 | MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config |
| 72 | MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common |
| 73 | PreConditions := $(ConfigStatusScript) $(ObjMakefiles) |
| 74 | ifneq ($(MakefileCommonIn),) |
| 75 | PreConditions += $(MakefileCommon) |
| 76 | endif |
| 77 | |
| 78 | ifneq ($(MakefileConfigIn),) |
| 79 | PreConditions += $(MakefileConfig) |
| 80 | endif |
| 81 | |
| 82 | preconditions: $(PreConditions) |
| 83 | |
| 84 | #------------------------------------------------------------------------ |
| 85 | # Make sure the BUILT_SOURCES are built first |
| 86 | #------------------------------------------------------------------------ |
| 87 | $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES) |
| 88 | |
| 89 | clean-all-local:: |
| 90 | ifneq ($(strip $(BUILT_SOURCES)),) |
| 91 | -$(Verb) $(RM) -f $(BUILT_SOURCES) |
| 92 | endif |
| 93 | |
| 94 | ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT)) |
| 95 | spotless: |
| 96 | $(Verb) if test -x config.status ; then \ |
| 97 | $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \ |
| 98 | $(MKDIR) .spotless.save ; \ |
| 99 | $(MV) config.status .spotless.save ; \ |
| 100 | $(MV) mklib .spotless.save ; \ |
| 101 | $(MV) projects .spotless.save ; \ |
| 102 | $(RM) -rf * ; \ |
| 103 | $(MV) .spotless.save/config.status . ; \ |
| 104 | $(MV) .spotless.save/mklib . ; \ |
| 105 | $(MV) .spotless.save/projects . ; \ |
| 106 | $(RM) -rf .spotless.save ; \ |
| 107 | $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \ |
| 108 | $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ |
| 109 | $(ConfigStatusScript) ; \ |
| 110 | else \ |
| 111 | $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \ |
| 112 | fi |
| 113 | else |
| 114 | spotless: |
| 115 | $(EchoCmd) "spotless target not supported for objdir == srcdir" |
| 116 | endif |
| 117 | |
| 118 | $(BUILT_SOURCES) : $(ObjMakefiles) |
| 119 | |
| 120 | #------------------------------------------------------------------------ |
| 121 | # Make sure we're not using a stale configuration |
| 122 | #------------------------------------------------------------------------ |
| 123 | reconfigure: |
| 124 | $(Echo) Reconfiguring $(PROJ_OBJ_ROOT) |
| 125 | $(Verb) cd $(PROJ_OBJ_ROOT) && \ |
| 126 | if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \ |
| 127 | $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \ |
| 128 | fi ; \ |
| 129 | $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ |
| 130 | $(ConfigStatusScript) |
| 131 | |
Anton Korobeynikov | d26284c | 2009-08-14 18:53:19 +0000 | [diff] [blame] | 132 | # FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick |
Daniel Dunbar | e74973d | 2009-08-13 17:22:49 +0000 | [diff] [blame] | 133 | # up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13. |
| 134 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 135 | .PRECIOUS: $(ConfigStatusScript) |
Anton Korobeynikov | d26284c | 2009-08-14 18:53:19 +0000 | [diff] [blame] | 136 | $(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 137 | $(Echo) Reconfiguring with $< |
| 138 | $(Verb) cd $(PROJ_OBJ_ROOT) && \ |
| 139 | if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \ |
| 140 | $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \ |
| 141 | fi ; \ |
| 142 | $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ |
| 143 | $(ConfigStatusScript) |
| 144 | |
| 145 | #------------------------------------------------------------------------ |
| 146 | # Make sure the configuration makefile is up to date |
| 147 | #------------------------------------------------------------------------ |
| 148 | ifneq ($(MakefileConfigIn),) |
| 149 | $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript) |
| 150 | $(Echo) Regenerating $@ |
| 151 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config |
| 152 | endif |
| 153 | |
| 154 | ifneq ($(MakefileCommonIn),) |
| 155 | $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript) |
| 156 | $(Echo) Regenerating $@ |
| 157 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common |
| 158 | endif |
| 159 | |
| 160 | #------------------------------------------------------------------------ |
| 161 | # If the Makefile in the source tree has been updated, copy it over into the |
| 162 | # build tree. But, only do this if the source and object makefiles differ |
| 163 | #------------------------------------------------------------------------ |
| 164 | ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR)) |
| 165 | |
Gordon Henriksen | 4290f66 | 2008-03-10 15:58:40 +0000 | [diff] [blame] | 166 | Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 167 | $(Echo) "Updating Makefile" |
| 168 | $(Verb) $(MKDIR) $(@D) |
| 169 | $(Verb) $(CP) -f $< $@ |
| 170 | |
| 171 | # Copy the Makefile.* files unless we're in the root directory which avoids |
| 172 | # the copying of Makefile.config.in or other things that should be explicitly |
| 173 | # taken care of. |
| 174 | $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile% |
| 175 | @case '$?' in \ |
| 176 | *Makefile.rules) ;; \ |
| 177 | *.in) ;; \ |
Gordon Henriksen | 4290f66 | 2008-03-10 15:58:40 +0000 | [diff] [blame] | 178 | *) $(EchoCmd) "Updating $(@F)" ; \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 179 | $(MKDIR) $(@D) ; \ |
| 180 | $(CP) -f $< $@ ;; \ |
| 181 | esac |
Gabor Greif | 14c4c8e | 2008-02-27 13:34:15 +0000 | [diff] [blame] | 182 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 183 | endif |
| 184 | |
| 185 | #------------------------------------------------------------------------ |
| 186 | # Set up the basic dependencies |
| 187 | #------------------------------------------------------------------------ |
| 188 | $(UserTargets):: $(PreConditions) |
| 189 | |
| 190 | all:: all-local |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 191 | clean:: clean-local |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 192 | clean-all:: clean-local clean-all-local |
| 193 | install:: install-local |
| 194 | uninstall:: uninstall-local |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 195 | install-local:: all-local |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 196 | install-bytecode:: install-bytecode-local |
| 197 | |
| 198 | ############################################################################### |
Mikhail Glushenkov | 5f7ba0f | 2009-03-02 09:04:13 +0000 | [diff] [blame] | 199 | # LLVMC: Provide rules for compiling llvmc plugins |
| 200 | ############################################################################### |
| 201 | |
| 202 | ifdef LLVMC_PLUGIN |
| 203 | |
| 204 | LIBRARYNAME := $(patsubst %,plugin_llvmc_%,$(LLVMC_PLUGIN)) |
Mikhail Glushenkov | d500a27 | 2009-06-23 20:46:48 +0000 | [diff] [blame] | 205 | CPP.Flags += -DLLVMC_PLUGIN_NAME=$(LLVMC_PLUGIN) |
Mikhail Glushenkov | 5f7ba0f | 2009-03-02 09:04:13 +0000 | [diff] [blame] | 206 | REQUIRES_EH := 1 |
Mikhail Glushenkov | 928de57 | 2009-07-03 03:52:47 +0000 | [diff] [blame] | 207 | |
| 208 | ifeq ($(ENABLE_LLVMC_DYNAMIC),1) |
| 209 | LD.Flags += -lCompilerDriver |
| 210 | endif |
Mikhail Glushenkov | 5f7ba0f | 2009-03-02 09:04:13 +0000 | [diff] [blame] | 211 | |
| 212 | # Build a dynamic library if the user runs `make` directly from the plugin |
| 213 | # directory. |
| 214 | ifndef LLVMC_BUILTIN_PLUGIN |
Mikhail Glushenkov | 928de57 | 2009-07-03 03:52:47 +0000 | [diff] [blame] | 215 | LOADABLE_MODULE = 1 |
Mikhail Glushenkov | 5f7ba0f | 2009-03-02 09:04:13 +0000 | [diff] [blame] | 216 | endif |
| 217 | |
| 218 | # TableGen stuff... |
| 219 | ifneq ($(BUILT_SOURCES),) |
Mikhail Glushenkov | 928de57 | 2009-07-03 03:52:47 +0000 | [diff] [blame] | 220 | LLVMC_BUILD_AUTOGENERATED_INC=1 |
Mikhail Glushenkov | 5f7ba0f | 2009-03-02 09:04:13 +0000 | [diff] [blame] | 221 | endif |
| 222 | |
| 223 | endif # LLVMC_PLUGIN |
| 224 | |
Mikhail Glushenkov | be76ef2 | 2009-06-25 01:07:00 +0000 | [diff] [blame] | 225 | ifdef LLVMC_BASED_DRIVER |
| 226 | |
| 227 | TOOLNAME = $(LLVMC_BASED_DRIVER) |
Mikhail Glushenkov | 928de57 | 2009-07-03 03:52:47 +0000 | [diff] [blame] | 228 | |
Mikhail Glushenkov | be76ef2 | 2009-06-25 01:07:00 +0000 | [diff] [blame] | 229 | REQUIRES_EH := 1 |
Mikhail Glushenkov | 928de57 | 2009-07-03 03:52:47 +0000 | [diff] [blame] | 230 | |
| 231 | ifeq ($(ENABLE_LLVMC_DYNAMIC),1) |
| 232 | LD.Flags += -lCompilerDriver |
| 233 | else |
| 234 | LLVMLIBS = CompilerDriver.a |
| 235 | LINK_COMPONENTS = support system |
| 236 | endif |
Mikhail Glushenkov | be76ef2 | 2009-06-25 01:07:00 +0000 | [diff] [blame] | 237 | |
| 238 | # Preprocessor magic that generates references to static variables in built-in |
| 239 | # plugins. |
| 240 | ifneq ($(LLVMC_BUILTIN_PLUGINS),) |
| 241 | |
| 242 | USEDLIBS += $(patsubst %,plugin_llvmc_%.a,$(LLVMC_BUILTIN_PLUGINS)) |
| 243 | |
| 244 | LLVMC_BUILTIN_PLUGIN_1 = $(word 1, $(LLVMC_BUILTIN_PLUGINS)) |
| 245 | LLVMC_BUILTIN_PLUGIN_2 = $(word 2, $(LLVMC_BUILTIN_PLUGINS)) |
| 246 | LLVMC_BUILTIN_PLUGIN_3 = $(word 3, $(LLVMC_BUILTIN_PLUGINS)) |
| 247 | LLVMC_BUILTIN_PLUGIN_4 = $(word 4, $(LLVMC_BUILTIN_PLUGINS)) |
| 248 | LLVMC_BUILTIN_PLUGIN_5 = $(word 5, $(LLVMC_BUILTIN_PLUGINS)) |
Mikhail Glushenkov | cbaa503 | 2009-10-09 04:15:52 +0000 | [diff] [blame] | 249 | LLVMC_BUILTIN_PLUGIN_6 = $(word 6, $(LLVMC_BUILTIN_PLUGINS)) |
| 250 | LLVMC_BUILTIN_PLUGIN_7 = $(word 7, $(LLVMC_BUILTIN_PLUGINS)) |
| 251 | LLVMC_BUILTIN_PLUGIN_8 = $(word 8, $(LLVMC_BUILTIN_PLUGINS)) |
| 252 | LLVMC_BUILTIN_PLUGIN_9 = $(word 9, $(LLVMC_BUILTIN_PLUGINS)) |
| 253 | LLVMC_BUILTIN_PLUGIN_10 = $(word 10, $(LLVMC_BUILTIN_PLUGINS)) |
| 254 | |
Mikhail Glushenkov | be76ef2 | 2009-06-25 01:07:00 +0000 | [diff] [blame] | 255 | |
| 256 | ifneq ($(LLVMC_BUILTIN_PLUGIN_1),) |
| 257 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_1=$(LLVMC_BUILTIN_PLUGIN_1) |
| 258 | endif |
| 259 | |
| 260 | ifneq ($(LLVMC_BUILTIN_PLUGIN_2),) |
| 261 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_2=$(LLVMC_BUILTIN_PLUGIN_2) |
| 262 | endif |
| 263 | |
| 264 | ifneq ($(LLVMC_BUILTIN_PLUGIN_3),) |
| 265 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_3=$(LLVMC_BUILTIN_PLUGIN_3) |
| 266 | endif |
| 267 | |
| 268 | ifneq ($(LLVMC_BUILTIN_PLUGIN_4),) |
| 269 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_4=$(LLVMC_BUILTIN_PLUGIN_4) |
| 270 | endif |
| 271 | |
| 272 | ifneq ($(LLVMC_BUILTIN_PLUGIN_5),) |
| 273 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_5) |
| 274 | endif |
| 275 | |
Mikhail Glushenkov | cbaa503 | 2009-10-09 04:15:52 +0000 | [diff] [blame] | 276 | ifneq ($(LLVMC_BUILTIN_PLUGIN_6),) |
| 277 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_6) |
| 278 | endif |
| 279 | |
| 280 | ifneq ($(LLVMC_BUILTIN_PLUGIN_7),) |
| 281 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_7) |
| 282 | endif |
| 283 | |
| 284 | ifneq ($(LLVMC_BUILTIN_PLUGIN_8),) |
| 285 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_8) |
| 286 | endif |
| 287 | |
| 288 | ifneq ($(LLVMC_BUILTIN_PLUGIN_9),) |
| 289 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_9) |
| 290 | endif |
| 291 | |
| 292 | ifneq ($(LLVMC_BUILTIN_PLUGIN_10),) |
| 293 | CPP.Flags += -DLLVMC_BUILTIN_PLUGIN_5=$(LLVMC_BUILTIN_PLUGIN_10) |
| 294 | endif |
| 295 | |
| 296 | |
Mikhail Glushenkov | be76ef2 | 2009-06-25 01:07:00 +0000 | [diff] [blame] | 297 | endif |
| 298 | |
| 299 | endif # LLVMC_BASED_DRIVER |
| 300 | |
Mikhail Glushenkov | 5f7ba0f | 2009-03-02 09:04:13 +0000 | [diff] [blame] | 301 | ############################################################################### |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 302 | # VARIABLES: Set up various variables based on configuration data |
| 303 | ############################################################################### |
| 304 | |
Daniel Dunbar | a89194e | 2008-10-03 19:11:19 +0000 | [diff] [blame] | 305 | # Variable for if this make is for a "cleaning" target |
| 306 | ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),) |
| 307 | IS_CLEANING_TARGET=1 |
| 308 | endif |
| 309 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 310 | #-------------------------------------------------------------------- |
| 311 | # Variables derived from configuration we are building |
| 312 | #-------------------------------------------------------------------- |
| 313 | |
| 314 | CPP.Defines := |
David Greene | 8cd590c | 2009-04-17 14:49:22 +0000 | [diff] [blame] | 315 | ifeq ($(ENABLE_OPTIMIZED),1) |
| 316 | BuildMode := Release |
| 317 | # Don't use -fomit-frame-pointer on Darwin or FreeBSD. |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 318 | ifneq ($(HOST_OS),FreeBSD) |
| 319 | ifneq ($(HOST_OS),Darwin) |
David Greene | 8cd590c | 2009-04-17 14:49:22 +0000 | [diff] [blame] | 320 | OmitFramePointer := -fomit-frame-pointer |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 321 | endif |
David Greene | 8cd590c | 2009-04-17 14:49:22 +0000 | [diff] [blame] | 322 | endif |
| 323 | |
| 324 | # Darwin requires -fstrict-aliasing to be explicitly enabled. |
Evan Cheng | 95e92ae | 2009-04-20 22:49:59 +0000 | [diff] [blame] | 325 | # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues |
| 326 | # with -fstrict-aliasing and ipa-type-escape radr://6756684 |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 327 | #ifeq ($(HOST_OS),Darwin) |
Evan Cheng | 107dae1 | 2009-04-20 22:16:40 +0000 | [diff] [blame] | 328 | # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing |
| 329 | #endif |
David Greene | 8cd590c | 2009-04-17 14:49:22 +0000 | [diff] [blame] | 330 | CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) |
| 331 | C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) |
| 332 | LD.Flags += $(OPTIMIZE_OPTION) |
Jeffrey Yasskin | ed62bf3 | 2009-09-27 17:47:29 +0000 | [diff] [blame] | 333 | ifdef DEBUG_SYMBOLS |
Jeffrey Yasskin | e2de471 | 2009-09-25 16:46:09 +0000 | [diff] [blame] | 334 | BuildMode := $(BuildMode)+Debug |
| 335 | CXX.Flags += -g |
| 336 | C.Flags += -g |
| 337 | LD.Flags += -g |
| 338 | KEEP_SYMBOLS := 1 |
| 339 | endif |
David Greene | 8cd590c | 2009-04-17 14:49:22 +0000 | [diff] [blame] | 340 | else |
Daniel Dunbar | dbe77e5 | 2009-11-16 22:37:52 +0000 | [diff] [blame] | 341 | ifdef NO_DEBUG_SYMBOLS |
| 342 | BuildMode := Unoptimized |
| 343 | CXX.Flags += |
| 344 | C.Flags += |
| 345 | LD.Flags += |
| 346 | KEEP_SYMBOLS := 1 |
| 347 | else |
| 348 | BuildMode := Debug |
| 349 | CXX.Flags += -g |
| 350 | C.Flags += -g |
| 351 | LD.Flags += -g |
| 352 | KEEP_SYMBOLS := 1 |
| 353 | endif |
David Greene | 8cd590c | 2009-04-17 14:49:22 +0000 | [diff] [blame] | 354 | endif |
| 355 | |
| 356 | ifeq ($(ENABLE_PROFILING),1) |
| 357 | BuildMode := $(BuildMode)+Profile |
| 358 | CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g |
| 359 | C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g |
| 360 | LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g |
| 361 | KEEP_SYMBOLS := 1 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 362 | endif |
| 363 | |
Daniel Dunbar | 886e183 | 2008-09-02 17:35:16 +0000 | [diff] [blame] | 364 | #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1) |
| 365 | # CXX.Flags += -fvisibility-inlines-hidden |
| 366 | #endif |
| 367 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 368 | # IF REQUIRES_EH=1 is specified then don't disable exceptions |
| 369 | ifndef REQUIRES_EH |
| 370 | CXX.Flags += -fno-exceptions |
| 371 | endif |
| 372 | |
Nicolas Geoffray | 0820ccc | 2009-08-19 22:04:44 +0000 | [diff] [blame] | 373 | ifdef REQUIRES_FRAME_POINTER |
| 374 | CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) |
| 375 | C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) |
| 376 | LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) |
| 377 | endif |
| 378 | |
Daniel Dunbar | d11bf27 | 2009-09-11 15:47:24 +0000 | [diff] [blame] | 379 | # If REQUIRES_RTTI=1 is specified then don't disable run-time type id. |
| 380 | ifeq ($(REQUIRES_RTTI), 1) |
Daniel Dunbar | 7985717 | 2009-09-11 15:45:13 +0000 | [diff] [blame] | 381 | CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags)) |
| 382 | CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 383 | endif |
| 384 | |
Daniel Dunbar | 3fd1aa7 | 2009-03-13 20:59:41 +0000 | [diff] [blame] | 385 | ifdef ENABLE_COVERAGE |
| 386 | BuildMode := $(BuildMode)+Coverage |
Chris Lattner | 20cba1c | 2009-06-16 23:00:42 +0000 | [diff] [blame] | 387 | CXX.Flags += -ftest-coverage -fprofile-arcs |
| 388 | C.Flags += -ftest-coverage -fprofile-arcs |
Daniel Dunbar | 3fd1aa7 | 2009-03-13 20:59:41 +0000 | [diff] [blame] | 389 | endif |
| 390 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 391 | # If DISABLE_ASSERTIONS=1 is specified (make command line or configured), |
| 392 | # then disable assertions by defining the appropriate preprocessor symbols. |
| 393 | ifdef DISABLE_ASSERTIONS |
Duncan Sands | 86a7a22 | 2009-03-27 11:35:00 +0000 | [diff] [blame] | 394 | # Indicate that assertions are turned off using a minus sign |
| 395 | BuildMode := $(BuildMode)-Asserts |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 396 | CPP.Defines += -DNDEBUG |
| 397 | else |
| 398 | CPP.Defines += -D_DEBUG |
| 399 | endif |
| 400 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 401 | # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or |
| 402 | # configured), then enable expensive checks by defining the |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 403 | # appropriate preprocessor symbols. |
| 404 | ifdef ENABLE_EXPENSIVE_CHECKS |
| 405 | BuildMode := $(BuildMode)+Checks |
Duncan Sands | 871e55f | 2008-12-09 21:33:20 +0000 | [diff] [blame] | 406 | CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 407 | endif |
| 408 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 409 | # LOADABLE_MODULE implies several other things so we force them to be |
| 410 | # defined/on. |
| 411 | ifdef LOADABLE_MODULE |
| 412 | SHARED_LIBRARY := 1 |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 413 | LINK_LIBS_IN_SHARED := 1 |
| 414 | endif |
| 415 | |
| 416 | ifdef SHARED_LIBRARY |
| 417 | ENABLE_PIC := 1 |
| 418 | PIC_FLAG = "(PIC)" |
| 419 | endif |
| 420 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 421 | ifeq ($(ENABLE_PIC),1) |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 422 | ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW)) |
Nick Lewycky | 5b882f2 | 2009-02-21 08:41:09 +0000 | [diff] [blame] | 423 | # Nothing. Win32 defaults to PIC and warns when given -fPIC |
| 424 | else |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 425 | ifeq ($(HOST_OS),Darwin) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 426 | # Common symbols not allowed in dylib files |
Nick Lewycky | 5b882f2 | 2009-02-21 08:41:09 +0000 | [diff] [blame] | 427 | CXX.Flags += -fno-common |
| 428 | C.Flags += -fno-common |
| 429 | else |
| 430 | # Linux and others; pass -fPIC |
| 431 | CXX.Flags += -fPIC |
| 432 | C.Flags += -fPIC |
| 433 | endif |
| 434 | endif |
Mike Stump | 8efa354 | 2009-05-08 23:08:58 +0000 | [diff] [blame] | 435 | else |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 436 | ifeq ($(HOST_OS),Darwin) |
Mike Stump | 8efa354 | 2009-05-08 23:08:58 +0000 | [diff] [blame] | 437 | CXX.Flags += -mdynamic-no-pic |
| 438 | C.Flags += -mdynamic-no-pic |
| 439 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 440 | endif |
| 441 | |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 442 | CXX.Flags += -Woverloaded-virtual |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 443 | CPP.BaseFlags += $(CPP.Defines) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 444 | AR.Flags := cru |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 445 | |
| 446 | # Make Floating point IEEE compliant on Alpha. |
| 447 | ifeq ($(ARCH),Alpha) |
| 448 | CXX.Flags += -mieee |
| 449 | CPP.BaseFlags += -mieee |
| 450 | ifeq ($(ENABLE_PIC),0) |
| 451 | CXX.Flags += -fPIC |
| 452 | CPP.BaseFlags += -fPIC |
| 453 | endif |
| 454 | endif |
| 455 | |
| 456 | ifeq ($(ARCH),Alpha) |
| 457 | LD.Flags += -Wl,--no-relax |
| 458 | endif |
| 459 | |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 460 | ifeq ($(HOST_OS),MingW) |
Anton Korobeynikov | 025ddd4 | 2009-05-04 10:25:30 +0000 | [diff] [blame] | 461 | ifeq ($(LLVM_CROSS_COMPILING),1) |
| 462 | # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016 |
| 463 | ifdef TOOLNAME |
| 464 | LD.Flags += -Wl,--allow-multiple-definition |
| 465 | endif |
| 466 | endif |
| 467 | endif |
| 468 | |
Jay Foad | 188e647 | 2009-05-15 18:13:31 +0000 | [diff] [blame] | 469 | ifdef ENABLE_EXPENSIVE_CHECKS |
| 470 | # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above. |
| 471 | # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160 |
| 472 | CXX.Flags := $(filter-out -fno-rtti,$(CXX.Flags)) |
Daniel Dunbar | 3b8513d | 2009-09-03 08:41:19 +0000 | [diff] [blame] | 473 | CXXFLAGS := $(filter-out -fno-rtti,$(CXXFLAGS)) |
Jay Foad | 188e647 | 2009-05-15 18:13:31 +0000 | [diff] [blame] | 474 | endif |
| 475 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 476 | #-------------------------------------------------------------------- |
| 477 | # Directory locations |
| 478 | #-------------------------------------------------------------------- |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 479 | TargetMode := |
| 480 | ifeq ($(LLVM_CROSS_COMPILING),1) |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 481 | BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 482 | endif |
| 483 | |
| 484 | ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode) |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 485 | ObjDir := $(ObjRootDir) |
| 486 | LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib |
| 487 | ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin |
| 488 | ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples |
| 489 | LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib |
| 490 | LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin |
| 491 | LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 492 | CFERuntimeLibDir := $(LLVMGCCDIR)/lib |
| 493 | |
| 494 | #-------------------------------------------------------------------- |
| 495 | # Full Paths To Compiled Tools and Utilities |
| 496 | #-------------------------------------------------------------------- |
| 497 | EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]: |
| 498 | Echo = @$(EchoCmd) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 499 | ifndef LLVMAS |
| 500 | LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT) |
| 501 | endif |
| 502 | ifndef TBLGEN |
| 503 | ifeq ($(LLVM_CROSS_COMPILING),1) |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 504 | TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 505 | else |
| 506 | TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT) |
| 507 | endif |
| 508 | endif |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 509 | LLVM_CONFIG := $(LLVMToolDir)/llvm-config |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 510 | ifndef LLVMLD |
| 511 | LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT) |
| 512 | endif |
| 513 | ifndef LLVMDIS |
| 514 | LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT) |
| 515 | endif |
| 516 | ifndef LLI |
| 517 | LLI := $(LLVMToolDir)/lli$(EXEEXT) |
| 518 | endif |
| 519 | ifndef LLC |
| 520 | LLC := $(LLVMToolDir)/llc$(EXEEXT) |
| 521 | endif |
| 522 | ifndef LOPT |
| 523 | LOPT := $(LLVMToolDir)/opt$(EXEEXT) |
| 524 | endif |
| 525 | ifndef LBUGPOINT |
| 526 | LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT) |
| 527 | endif |
| 528 | ifndef LUPGRADE |
| 529 | LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT) |
| 530 | endif |
| 531 | ifeq ($(LLVMGCC_MAJVERS),3) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 532 | LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC) |
| 533 | LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX) |
| 534 | else |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 535 | LLVMGCCWITHPATH := $(LLVMGCC) |
| 536 | LLVMGXXWITHPATH := $(LLVMGXX) |
| 537 | endif |
| 538 | |
| 539 | #-------------------------------------------------------------------- |
| 540 | # Adjust to user's request |
| 541 | #-------------------------------------------------------------------- |
| 542 | |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 543 | ifeq ($(HOST_OS),Darwin) |
Scott Michel | f9c9d7e | 2009-03-12 21:03:53 +0000 | [diff] [blame] | 544 | DARWIN_VERSION := `sw_vers -productVersion` |
| 545 | # Strip a number like 10.4.7 to 10.4 |
| 546 | DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/') |
| 547 | # Get "4" out of 10.4 for later pieces in the makefile. |
| 548 | DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/') |
Bill Wendling | 3c0d23b | 2009-03-22 08:28:45 +0000 | [diff] [blame] | 549 | |
Julien Lerouge | 64e1db8 | 2009-03-27 18:18:00 +0000 | [diff] [blame] | 550 | SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined -Wl,suppress \ |
Evan Cheng | e951aca | 2009-09-08 18:52:20 +0000 | [diff] [blame] | 551 | -dynamiclib |
| 552 | ifneq ($(ARCH),ARM) |
| 553 | SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION) |
| 554 | endif |
Scott Michel | f9c9d7e | 2009-03-12 21:03:53 +0000 | [diff] [blame] | 555 | else |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 556 | ifeq ($(HOST_OS),Cygwin) |
Scott Michel | f9c9d7e | 2009-03-12 21:03:53 +0000 | [diff] [blame] | 557 | SharedLinkOptions=-shared -nostdlib -Wl,--export-all-symbols \ |
Mikhail Glushenkov | 928de57 | 2009-07-03 03:52:47 +0000 | [diff] [blame] | 558 | -Wl,--enable-auto-import -Wl,--enable-auto-image-base |
Scott Michel | f9c9d7e | 2009-03-12 21:03:53 +0000 | [diff] [blame] | 559 | else |
| 560 | SharedLinkOptions=-shared |
| 561 | endif |
| 562 | endif |
| 563 | |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 564 | ifeq ($(TARGET_OS),Darwin) |
Evan Cheng | e951aca | 2009-09-08 18:52:20 +0000 | [diff] [blame] | 565 | ifneq ($(ARCH),ARM) |
| 566 | TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION) |
Jim Grosbach | ce7da4d | 2009-10-30 21:33:05 +0000 | [diff] [blame] | 567 | else |
| 568 | TargetCommonOpts += -marm |
Evan Cheng | e951aca | 2009-09-08 18:52:20 +0000 | [diff] [blame] | 569 | endif |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 570 | endif |
| 571 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 572 | # Adjust LD.Flags depending on the kind of library that is to be built. Note |
| 573 | # that if LOADABLE_MODULE is specified then the resulting shared library can |
| 574 | # be opened with dlopen. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 575 | ifdef LOADABLE_MODULE |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 576 | LD.Flags += -module |
| 577 | endif |
| 578 | |
| 579 | ifdef SHARED_LIBRARY |
Scott Michel | f9c9d7e | 2009-03-12 21:03:53 +0000 | [diff] [blame] | 580 | ifneq ($(DARWIN_MAJVERS),4) |
Nick Lewycky | 12015c1 | 2009-03-03 04:55:15 +0000 | [diff] [blame] | 581 | LD.Flags += $(RPATH) -Wl,$(LibDir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 582 | endif |
Scott Michel | f9c9d7e | 2009-03-12 21:03:53 +0000 | [diff] [blame] | 583 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 584 | |
| 585 | ifdef TOOL_VERBOSE |
| 586 | C.Flags += -v |
| 587 | CXX.Flags += -v |
| 588 | LD.Flags += -v |
| 589 | VERBOSE := 1 |
| 590 | endif |
| 591 | |
| 592 | # Adjust settings for verbose mode |
| 593 | ifndef VERBOSE |
| 594 | Verb := @ |
Reid Spencer | dfb3d5b | 2007-07-23 08:20:46 +0000 | [diff] [blame] | 595 | AR.Flags += >/dev/null 2>/dev/null |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 596 | ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1 |
| 597 | else |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 598 | ConfigureScriptFLAGS := |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 599 | endif |
| 600 | |
| 601 | # By default, strip symbol information from executable |
| 602 | ifndef KEEP_SYMBOLS |
| 603 | Strip := $(PLATFORMSTRIPOPTS) |
| 604 | StripWarnMsg := "(without symbols)" |
| 605 | Install.StripFlag += -s |
| 606 | endif |
| 607 | |
| 608 | # Adjust linker flags for building an executable |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 609 | ifneq ($(HOST_OS),Darwin) |
Scott Michel | f9c9d7e | 2009-03-12 21:03:53 +0000 | [diff] [blame] | 610 | ifneq ($(DARWIN_MAJVERS),4) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 611 | ifdef TOOLNAME |
| 612 | ifdef EXAMPLE_TOOL |
Nick Lewycky | aca7e1c | 2009-03-07 22:17:05 +0000 | [diff] [blame] | 613 | LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 614 | else |
Nick Lewycky | aca7e1c | 2009-03-07 22:17:05 +0000 | [diff] [blame] | 615 | LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 616 | endif |
| 617 | endif |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 618 | endif |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 619 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 620 | |
| 621 | #---------------------------------------------------------- |
| 622 | # Options To Invoke Tools |
| 623 | #---------------------------------------------------------- |
| 624 | |
Daniel Dunbar | b47afd5 | 2009-05-12 07:26:49 +0000 | [diff] [blame] | 625 | ifndef NO_PEDANTIC |
Duncan Sands | 7d9ea94 | 2009-06-19 12:40:30 +0000 | [diff] [blame] | 626 | CompileCommonOpts += -pedantic -Wno-long-long |
Daniel Dunbar | b47afd5 | 2009-05-12 07:26:49 +0000 | [diff] [blame] | 627 | endif |
Duncan Sands | 7d9ea94 | 2009-06-19 12:40:30 +0000 | [diff] [blame] | 628 | CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \ |
| 629 | $(EXTRA_OPTIONS) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 630 | |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 631 | ifeq ($(HOST_OS),HP-UX) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 632 | CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE |
| 633 | endif |
| 634 | |
| 635 | # If we are building a universal binary on Mac OS/X, pass extra options. This |
| 636 | # is useful to people that want to link the LLVM libraries into their universal |
| 637 | # apps. |
| 638 | # |
| 639 | # The following can be optionally specified: |
| 640 | # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use. |
| 641 | # For Mac OS/X 10.4 Intel machines, the traditional one is: |
| 642 | # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/ |
| 643 | # UNIVERSAL_ARCH can be optionally specified to be a list of architectures |
| 644 | # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to |
| 645 | # i386/ppc only. |
| 646 | ifdef UNIVERSAL |
| 647 | ifndef UNIVERSAL_ARCH |
| 648 | UNIVERSAL_ARCH := i386 ppc |
| 649 | endif |
| 650 | UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %) |
| 651 | CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 652 | ifdef UNIVERSAL_SDK_PATH |
| 653 | CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 654 | endif |
| 655 | |
| 656 | # Building universal cannot compute dependencies automatically. |
| 657 | DISABLE_AUTO_DEPENDENCIES=1 |
Evan Cheng | d6ad5ff | 2009-03-09 18:28:37 +0000 | [diff] [blame] | 658 | else |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 659 | ifeq ($(TARGET_OS),Darwin) |
Bill Wendling | 025cce5 | 2009-03-12 04:10:09 +0000 | [diff] [blame] | 660 | ifeq ($(ARCH),x86_64) |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 661 | TargetCommonOpts = -m64 |
Bill Wendling | 025cce5 | 2009-03-12 04:10:09 +0000 | [diff] [blame] | 662 | else |
| 663 | ifeq ($(ARCH),x86) |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 664 | TargetCommonOpts = -m32 |
Bill Wendling | 025cce5 | 2009-03-12 04:10:09 +0000 | [diff] [blame] | 665 | endif |
Evan Cheng | d6ad5ff | 2009-03-09 18:28:37 +0000 | [diff] [blame] | 666 | endif |
| 667 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 668 | endif |
| 669 | |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 670 | ifeq ($(HOST_OS),SunOS) |
Chris Lattner | 35c997c | 2008-06-24 17:44:42 +0000 | [diff] [blame] | 671 | CPP.BaseFlags += -include llvm/System/Solaris.h |
| 672 | endif |
| 673 | |
Edward O'Callaghan | 8e004f6 | 2009-10-14 05:55:03 +0000 | [diff] [blame] | 674 | ifeq ($(HOST_OS),AuroraUX) |
| 675 | CPP.BaseFlags += -include llvm/System/Solaris.h |
| 676 | endif # !HOST_OS - AuroraUX. |
| 677 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 678 | LD.Flags += -L$(LibDir) -L$(LLVMLibDir) |
Dan Gohman | 5a5e6e9 | 2008-10-17 01:33:43 +0000 | [diff] [blame] | 679 | CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 680 | # All -I flags should go here, so that they don't confuse llvm-config. |
Duncan Sands | 3b96029 | 2008-01-28 17:38:30 +0000 | [diff] [blame] | 681 | CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \ |
| 682 | $(patsubst %,-I%/include,\ |
Chris Lattner | 6ee4875 | 2008-01-28 04:18:41 +0000 | [diff] [blame] | 683 | $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \ |
| 684 | $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \ |
| 685 | $(CPP.BaseFlags) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 686 | |
Daniel Dunbar | 3fd1aa7 | 2009-03-13 20:59:41 +0000 | [diff] [blame] | 687 | ifeq ($(BUILD_COMPONENT), 1) |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 688 | Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 689 | $(TargetCommonOpts) $(CompileCommonOpts) -c |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 690 | Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \ |
| 691 | $(CPPFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 692 | $(TargetCommonOpts) $(CompileCommonOpts) -c |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 693 | Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \ |
Chris Lattner | 20cba1c | 2009-06-16 23:00:42 +0000 | [diff] [blame] | 694 | $(CompileCommonOpts) $(CXX.Flags) -E |
Eric Christopher | d631dfc | 2009-08-18 18:07:35 +0000 | [diff] [blame] | 695 | Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \ |
| 696 | $(LDFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 697 | $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip) |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 698 | else |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 699 | Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 700 | $(TargetCommonOpts) $(CompileCommonOpts) -c |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 701 | Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 702 | $(TargetCommonOpts) $(CompileCommonOpts) -c |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 703 | Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \ |
Chris Lattner | 20cba1c | 2009-06-16 23:00:42 +0000 | [diff] [blame] | 704 | $(CompileCommonOpts) $(CXX.Flags) -E |
Eric Christopher | d631dfc | 2009-08-18 18:07:35 +0000 | [diff] [blame] | 705 | Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 706 | $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip) |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 707 | endif |
| 708 | |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 709 | BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CFLAGS) \ |
| 710 | $(CPPFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 711 | $(TargetCommonOpts) $(CompileCommonOpts) |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 712 | Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 713 | $(TargetCommonOpts) $(CompileCommonOpts) -E |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 714 | |
Eric Christopher | 06bf482 | 2009-08-18 03:23:40 +0000 | [diff] [blame] | 715 | BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \ |
| 716 | $(CPPFLAGS) \ |
Evan Cheng | d1f1fc1 | 2009-03-23 03:45:56 +0000 | [diff] [blame] | 717 | $(TargetCommonOpts) $(CompileCommonOpts) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 718 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 719 | ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755 |
| 720 | ScriptInstall = $(INSTALL) -m 0755 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 721 | DataInstall = $(INSTALL) -m 0644 |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 722 | |
| 723 | # When compiling under Mingw/Cygwin, the tblgen tool expects Windows |
| 724 | # paths. In this case, the SYSPATH function (defined in |
| 725 | # Makefile.config) transforms Unix paths into Windows paths. |
| 726 | TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \ |
Mikhail Glushenkov | 3e6bf9a | 2009-01-09 16:31:01 +0000 | [diff] [blame] | 727 | -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \ |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 728 | -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \ |
| 729 | -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target) |
| 730 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 731 | Archive = $(AR) $(AR.Flags) |
| 732 | LArchive = $(LLVMToolDir)/llvm-ar rcsf |
| 733 | ifdef RANLIB |
| 734 | Ranlib = $(RANLIB) |
| 735 | else |
| 736 | Ranlib = ranlib |
| 737 | endif |
| 738 | |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 739 | AliasTool = ln -s |
| 740 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 741 | #---------------------------------------------------------- |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 742 | # Get the list of source files and compute object file |
| 743 | # names from them. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 744 | #---------------------------------------------------------- |
| 745 | |
| 746 | ifndef SOURCES |
| 747 | Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \ |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame] | 748 | $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 749 | else |
| 750 | Sources := $(SOURCES) |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 751 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 752 | |
| 753 | ifdef BUILT_SOURCES |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame] | 754 | Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 755 | endif |
| 756 | |
| 757 | BaseNameSources := $(sort $(basename $(Sources))) |
| 758 | |
| 759 | ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 760 | ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc) |
| 761 | |
| 762 | ############################################################################### |
| 763 | # DIRECTORIES: Handle recursive descent of directory structure |
| 764 | ############################################################################### |
| 765 | |
| 766 | #--------------------------------------------------------- |
| 767 | # Provide rules to make install dirs. This must be early |
| 768 | # in the file so they get built before dependencies |
| 769 | #--------------------------------------------------------- |
| 770 | |
Mike Stump | 98f72e0 | 2009-02-12 23:45:11 +0000 | [diff] [blame] | 771 | $(PROJ_bindir) $(PROJ_libdir) $(PROJ_includedir) $(PROJ_etcdir):: |
Mike Stump | f0feefd | 2009-01-22 03:24:22 +0000 | [diff] [blame] | 772 | $(Verb) $(MKDIR) $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 773 | |
| 774 | # To create other directories, as needed, and timestamp their creation |
| 775 | %/.dir: |
| 776 | $(Verb) $(MKDIR) $* > /dev/null |
| 777 | $(Verb) $(DATE) > $@ |
| 778 | |
| 779 | .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir |
| 780 | .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir |
| 781 | |
| 782 | #--------------------------------------------------------- |
| 783 | # Handle the DIRS options for sequential construction |
| 784 | #--------------------------------------------------------- |
| 785 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 786 | SubDirs := |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 787 | ifdef DIRS |
| 788 | SubDirs += $(DIRS) |
| 789 | |
| 790 | ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) |
| 791 | $(RecursiveTargets):: |
| 792 | $(Verb) for dir in $(DIRS); do \ |
| 793 | if [ ! -f $$dir/Makefile ]; then \ |
| 794 | $(MKDIR) $$dir; \ |
| 795 | $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \ |
| 796 | fi; \ |
| 797 | ($(MAKE) -C $$dir $@ ) || exit 1; \ |
| 798 | done |
| 799 | else |
| 800 | $(RecursiveTargets):: |
| 801 | $(Verb) for dir in $(DIRS); do \ |
| 802 | ($(MAKE) -C $$dir $@ ) || exit 1; \ |
| 803 | done |
| 804 | endif |
| 805 | |
| 806 | endif |
| 807 | |
| 808 | #--------------------------------------------------------- |
| 809 | # Handle the EXPERIMENTAL_DIRS options ensuring success |
| 810 | # after each directory is built. |
| 811 | #--------------------------------------------------------- |
| 812 | ifdef EXPERIMENTAL_DIRS |
| 813 | $(RecursiveTargets):: |
| 814 | $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \ |
| 815 | if [ ! -f $$dir/Makefile ]; then \ |
| 816 | $(MKDIR) $$dir; \ |
| 817 | $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \ |
| 818 | fi; \ |
| 819 | ($(MAKE) -C $$dir $@ ) || exit 0; \ |
| 820 | done |
| 821 | endif |
| 822 | |
| 823 | #----------------------------------------------------------- |
Mike Stump | 0fec319 | 2009-01-24 00:00:41 +0000 | [diff] [blame] | 824 | # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction |
| 825 | #----------------------------------------------------------- |
| 826 | ifdef OPTIONAL_PARALLEL_DIRS |
| 827 | PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)")) |
| 828 | endif |
| 829 | |
| 830 | #----------------------------------------------------------- |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 831 | # Handle the PARALLEL_DIRS options for parallel construction |
| 832 | #----------------------------------------------------------- |
| 833 | ifdef PARALLEL_DIRS |
| 834 | |
| 835 | SubDirs += $(PARALLEL_DIRS) |
| 836 | |
| 837 | # Unfortunately, this list must be maintained if new recursive targets are added |
| 838 | all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS)) |
| 839 | clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS)) |
| 840 | clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS)) |
| 841 | install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS)) |
| 842 | uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS)) |
| 843 | install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS)) |
Daniel Dunbar | 4f1c655 | 2009-09-13 22:39:27 +0000 | [diff] [blame] | 844 | unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 845 | |
| 846 | ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T)) |
| 847 | |
| 848 | $(ParallelTargets) : |
| 849 | $(Verb) if [ ! -f $(@D)/Makefile ]; then \ |
| 850 | $(MKDIR) $(@D); \ |
| 851 | $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \ |
| 852 | fi; \ |
| 853 | $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) |
| 854 | endif |
| 855 | |
| 856 | #--------------------------------------------------------- |
| 857 | # Handle the OPTIONAL_DIRS options for directores that may |
| 858 | # or may not exist. |
| 859 | #--------------------------------------------------------- |
| 860 | ifdef OPTIONAL_DIRS |
| 861 | |
| 862 | SubDirs += $(OPTIONAL_DIRS) |
| 863 | |
| 864 | ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) |
| 865 | $(RecursiveTargets):: |
| 866 | $(Verb) for dir in $(OPTIONAL_DIRS); do \ |
| 867 | if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\ |
| 868 | if [ ! -f $$dir/Makefile ]; then \ |
| 869 | $(MKDIR) $$dir; \ |
| 870 | $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \ |
| 871 | fi; \ |
| 872 | ($(MAKE) -C$$dir $@ ) || exit 1; \ |
| 873 | fi \ |
| 874 | done |
| 875 | else |
| 876 | $(RecursiveTargets):: |
| 877 | $(Verb) for dir in $(OPTIONAL_DIRS); do \ |
| 878 | ($(MAKE) -C$$dir $@ ) || exit 1; \ |
| 879 | done |
| 880 | endif |
| 881 | endif |
| 882 | |
| 883 | #--------------------------------------------------------- |
| 884 | # Handle the CONFIG_FILES options |
| 885 | #--------------------------------------------------------- |
| 886 | ifdef CONFIG_FILES |
| 887 | |
| 888 | ifdef NO_INSTALL |
| 889 | install-local:: |
| 890 | $(Echo) Install circumvented with NO_INSTALL |
| 891 | uninstall-local:: |
| 892 | $(Echo) UnInstall circumvented with NO_INSTALL |
| 893 | else |
| 894 | install-local:: $(PROJ_etcdir) $(CONFIG_FILES) |
| 895 | $(Echo) Installing Configuration Files To $(PROJ_etcdir) |
| 896 | $(Verb)for file in $(CONFIG_FILES); do \ |
| 897 | if test -f $(PROJ_OBJ_DIR)/$${file} ; then \ |
| 898 | $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \ |
| 899 | elif test -f $(PROJ_SRC_DIR)/$${file} ; then \ |
| 900 | $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \ |
| 901 | else \ |
| 902 | $(ECHO) Error: cannot find config file $${file}. ; \ |
| 903 | fi \ |
| 904 | done |
| 905 | |
| 906 | uninstall-local:: |
| 907 | $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir) |
| 908 | $(Verb)for file in $(CONFIG_FILES); do \ |
| 909 | $(RM) -f $(PROJ_etcdir)/$${file} ; \ |
| 910 | done |
| 911 | endif |
| 912 | |
| 913 | endif |
| 914 | |
| 915 | ############################################################################### |
| 916 | # Set up variables for building libararies |
| 917 | ############################################################################### |
| 918 | |
| 919 | #--------------------------------------------------------- |
| 920 | # Define various command line options pertaining to the |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 921 | # libraries needed when linking. There are "Proj" libs |
| 922 | # (defined by the user's project) and "LLVM" libs (defined |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 923 | # by the LLVM project). |
| 924 | #--------------------------------------------------------- |
| 925 | |
| 926 | ifdef USEDLIBS |
| 927 | ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS))) |
| 928 | ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions)) |
| 929 | ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS))) |
| 930 | ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs)) |
| 931 | endif |
| 932 | |
| 933 | ifdef LLVMLIBS |
| 934 | LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS))) |
| 935 | LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions)) |
| 936 | LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS))) |
| 937 | LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs)) |
| 938 | endif |
| 939 | |
Daniel Dunbar | a89194e | 2008-10-03 19:11:19 +0000 | [diff] [blame] | 940 | ifndef IS_CLEANING_TARGET |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 941 | ifdef LINK_COMPONENTS |
| 942 | |
| 943 | # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make |
| 944 | # clean in tools, then do a make in tools (instead of at the top level). |
| 945 | $(LLVM_CONFIG): |
| 946 | @echo "*** llvm-config doesn't exist - rebuilding it." |
| 947 | @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config |
Gabor Greif | 14c4c8e | 2008-02-27 13:34:15 +0000 | [diff] [blame] | 948 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 949 | $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG) |
| 950 | |
Mikhail Glushenkov | fc32082 | 2009-03-03 10:03:27 +0000 | [diff] [blame] | 951 | LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS)) |
| 952 | LLVMLibsPaths += $(LLVM_CONFIG) \ |
Misha Brukman | fc6ae99 | 2009-08-17 15:31:24 +0000 | [diff] [blame] | 953 | $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 954 | endif |
| 955 | endif |
| 956 | |
| 957 | ############################################################################### |
| 958 | # Library Build Rules: Four ways to build a library |
| 959 | ############################################################################### |
| 960 | |
| 961 | #--------------------------------------------------------- |
| 962 | # Bytecode Module Targets: |
| 963 | # If the user set MODULE_NAME then they want to build a |
| 964 | # bytecode module from the sources. We compile all the |
| 965 | # sources and link it together into a single bytecode |
| 966 | # module. |
| 967 | #--------------------------------------------------------- |
| 968 | |
| 969 | ifdef MODULE_NAME |
| 970 | ifeq ($(strip $(LLVMGCC)),) |
| 971 | $(warning Modules require llvm-gcc but no llvm-gcc is available ****) |
| 972 | else |
| 973 | |
| 974 | Module := $(LibDir)/$(MODULE_NAME).bc |
Andrew Lenharth | d002077 | 2008-02-25 22:41:55 +0000 | [diff] [blame] | 975 | LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 976 | |
| 977 | |
| 978 | ifdef EXPORTED_SYMBOL_FILE |
| 979 | LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE) |
| 980 | endif |
| 981 | |
| 982 | $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) |
| 983 | $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@) |
| 984 | $(Verb) $(LinkModule) -o $@ $(ObjectsBC) |
| 985 | |
| 986 | all-local:: $(Module) |
| 987 | |
| 988 | clean-local:: |
| 989 | ifneq ($(strip $(Module)),) |
| 990 | -$(Verb) $(RM) -f $(Module) |
| 991 | endif |
| 992 | |
| 993 | ifdef BYTECODE_DESTINATION |
| 994 | ModuleDestDir := $(BYTECODE_DESTINATION) |
| 995 | else |
| 996 | ModuleDestDir := $(PROJ_libdir) |
| 997 | endif |
| 998 | |
| 999 | ifdef NO_INSTALL |
| 1000 | install-local:: |
| 1001 | $(Echo) Install circumvented with NO_INSTALL |
| 1002 | uninstall-local:: |
| 1003 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1004 | else |
| 1005 | DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc |
| 1006 | |
| 1007 | install-module:: $(DestModule) |
| 1008 | install-local:: $(DestModule) |
| 1009 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1010 | $(DestModule): $(ModuleDestDir) $(Module) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1011 | $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule) |
| 1012 | $(Verb) $(DataInstall) $(Module) $(DestModule) |
| 1013 | |
| 1014 | uninstall-local:: |
| 1015 | $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule) |
| 1016 | -$(Verb) $(RM) -f $(DestModule) |
| 1017 | endif |
| 1018 | |
| 1019 | endif |
| 1020 | endif |
| 1021 | |
| 1022 | # if we're building a library ... |
| 1023 | ifdef LIBRARYNAME |
| 1024 | |
Misha Brukman | fc6ae99 | 2009-08-17 15:31:24 +0000 | [diff] [blame] | 1025 | # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1026 | LIBRARYNAME := $(strip $(LIBRARYNAME)) |
| 1027 | ifdef LOADABLE_MODULE |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1028 | LibName.A := $(LibDir)/$(LIBRARYNAME).a |
| 1029 | LibName.SO := $(LibDir)/$(LIBRARYNAME)$(SHLIBEXT) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1030 | else |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1031 | LibName.A := $(LibDir)/lib$(LIBRARYNAME).a |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1032 | LibName.SO := $(LibDir)/lib$(LIBRARYNAME)$(SHLIBEXT) |
| 1033 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1034 | LibName.O := $(LibDir)/$(LIBRARYNAME).o |
| 1035 | LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca |
| 1036 | |
| 1037 | #--------------------------------------------------------- |
| 1038 | # Shared Library Targets: |
| 1039 | # If the user asked for a shared library to be built |
| 1040 | # with the SHARED_LIBRARY variable, then we provide |
| 1041 | # targets for building them. |
| 1042 | #--------------------------------------------------------- |
| 1043 | ifdef SHARED_LIBRARY |
| 1044 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1045 | all-local:: $(LibName.SO) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1046 | |
| 1047 | ifdef LINK_LIBS_IN_SHARED |
| 1048 | ifdef LOADABLE_MODULE |
| 1049 | SharedLibKindMessage := "Loadable Module" |
| 1050 | else |
| 1051 | SharedLibKindMessage := "Shared Library" |
| 1052 | endif |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1053 | $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1054 | $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \ |
| 1055 | $(LIBRARYNAME)$(SHLIBEXT) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1056 | $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \ |
Edwin Török | e59edce | 2009-05-26 19:11:47 +0000 | [diff] [blame] | 1057 | $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1058 | else |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1059 | $(LibName.SO): $(ObjectsO) $(LibDir)/.dir |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1060 | $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1061 | $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1062 | endif |
| 1063 | |
| 1064 | clean-local:: |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1065 | ifneq ($(strip $(LibName.SO)),) |
| 1066 | -$(Verb) $(RM) -f $(LibName.SO) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1067 | endif |
| 1068 | |
| 1069 | ifdef NO_INSTALL |
| 1070 | install-local:: |
| 1071 | $(Echo) Install circumvented with NO_INSTALL |
| 1072 | uninstall-local:: |
| 1073 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1074 | else |
| 1075 | DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT) |
| 1076 | |
| 1077 | install-local:: $(DestSharedLib) |
| 1078 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1079 | $(DestSharedLib): $(LibName.SO) $(PROJ_libdir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1080 | $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1081 | $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1082 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1083 | uninstall-local:: |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1084 | $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib) |
| 1085 | -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).* |
| 1086 | endif |
| 1087 | endif |
| 1088 | |
| 1089 | #--------------------------------------------------------- |
| 1090 | # Bytecode Library Targets: |
| 1091 | # If the user asked for a bytecode library to be built |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1092 | # with the BYTECODE_LIBRARY variable, then we provide |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1093 | # targets for building them. |
| 1094 | #--------------------------------------------------------- |
| 1095 | ifdef BYTECODE_LIBRARY |
| 1096 | ifeq ($(strip $(LLVMGCC)),) |
| 1097 | $(warning Bytecode libraries require llvm-gcc which could not be found ****) |
| 1098 | else |
| 1099 | |
| 1100 | all-local:: $(LibName.BCA) |
| 1101 | |
| 1102 | ifdef EXPORTED_SYMBOL_FILE |
| 1103 | BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \ |
| 1104 | -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE) |
| 1105 | |
| 1106 | $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \ |
| 1107 | $(LLVMToolDir)/llvm-ar |
| 1108 | $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \ |
| 1109 | "(internalize)" |
Daniel Dunbar | c6750c9 | 2009-08-28 16:14:46 +0000 | [diff] [blame] | 1110 | $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1111 | $(Verb) $(RM) -f $@ |
Daniel Dunbar | c6750c9 | 2009-08-28 16:14:46 +0000 | [diff] [blame] | 1112 | $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1113 | else |
| 1114 | $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \ |
| 1115 | $(LLVMToolDir)/llvm-ar |
| 1116 | $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) |
| 1117 | $(Verb) $(RM) -f $@ |
| 1118 | $(Verb) $(LArchive) $@ $(ObjectsBC) |
| 1119 | |
| 1120 | endif |
| 1121 | |
| 1122 | clean-local:: |
| 1123 | ifneq ($(strip $(LibName.BCA)),) |
| 1124 | -$(Verb) $(RM) -f $(LibName.BCA) |
| 1125 | endif |
| 1126 | |
| 1127 | ifdef BYTECODE_DESTINATION |
| 1128 | BytecodeDestDir := $(BYTECODE_DESTINATION) |
| 1129 | else |
| 1130 | BytecodeDestDir := $(PROJ_libdir) |
| 1131 | endif |
| 1132 | |
Daniel Dunbar | 659cef8 | 2009-05-12 05:35:40 +0000 | [diff] [blame] | 1133 | DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1134 | |
| 1135 | install-bytecode-local:: $(DestBytecodeLib) |
| 1136 | |
| 1137 | ifdef NO_INSTALL |
| 1138 | install-local:: |
| 1139 | $(Echo) Install circumvented with NO_INSTALL |
| 1140 | uninstall-local:: |
| 1141 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1142 | else |
| 1143 | install-local:: $(DestBytecodeLib) |
| 1144 | |
Mike Stump | 98f72e0 | 2009-02-12 23:45:11 +0000 | [diff] [blame] | 1145 | $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1146 | $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib) |
| 1147 | $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib) |
| 1148 | |
| 1149 | uninstall-local:: |
| 1150 | $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib) |
| 1151 | -$(Verb) $(RM) -f $(DestBytecodeLib) |
| 1152 | endif |
| 1153 | endif |
| 1154 | endif |
| 1155 | |
| 1156 | #--------------------------------------------------------- |
Chris Lattner | 20cba1c | 2009-06-16 23:00:42 +0000 | [diff] [blame] | 1157 | # Library Targets: |
| 1158 | # If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to |
| 1159 | # building an archive. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1160 | #--------------------------------------------------------- |
| 1161 | ifndef BUILD_ARCHIVE |
Chris Lattner | 20cba1c | 2009-06-16 23:00:42 +0000 | [diff] [blame] | 1162 | ifndef LOADABLE_MODULE |
| 1163 | BUILD_ARCHIVE = 1 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1164 | endif |
| 1165 | endif |
| 1166 | |
| 1167 | #--------------------------------------------------------- |
| 1168 | # Archive Library Targets: |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1169 | # If the user wanted a regular archive library built, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1170 | # then we provide targets for building them. |
| 1171 | #--------------------------------------------------------- |
| 1172 | ifdef BUILD_ARCHIVE |
| 1173 | |
| 1174 | all-local:: $(LibName.A) |
| 1175 | |
| 1176 | $(LibName.A): $(ObjectsO) $(LibDir)/.dir |
| 1177 | $(Echo) Building $(BuildMode) Archive Library $(notdir $@) |
| 1178 | -$(Verb) $(RM) -f $@ |
Bill Wendling | 3d6df10 | 2009-01-03 22:46:50 +0000 | [diff] [blame] | 1179 | $(Verb) $(Archive) $@ $(ObjectsO) |
| 1180 | $(Verb) $(Ranlib) $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1181 | |
| 1182 | clean-local:: |
| 1183 | ifneq ($(strip $(LibName.A)),) |
| 1184 | -$(Verb) $(RM) -f $(LibName.A) |
| 1185 | endif |
| 1186 | |
| 1187 | ifdef NO_INSTALL |
| 1188 | install-local:: |
| 1189 | $(Echo) Install circumvented with NO_INSTALL |
| 1190 | uninstall-local:: |
| 1191 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1192 | else |
| 1193 | DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a |
| 1194 | |
| 1195 | install-local:: $(DestArchiveLib) |
| 1196 | |
Mike Stump | 98f72e0 | 2009-02-12 23:45:11 +0000 | [diff] [blame] | 1197 | $(DestArchiveLib): $(LibName.A) $(PROJ_libdir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1198 | $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib) |
| 1199 | $(Verb) $(MKDIR) $(PROJ_libdir) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1200 | $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1201 | |
| 1202 | uninstall-local:: |
| 1203 | $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib) |
| 1204 | -$(Verb) $(RM) -f $(DestArchiveLib) |
| 1205 | endif |
| 1206 | endif |
| 1207 | |
| 1208 | # endif LIBRARYNAME |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1209 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1210 | |
| 1211 | ############################################################################### |
| 1212 | # Tool Build Rules: Build executable tool based on TOOLNAME option |
| 1213 | ############################################################################### |
| 1214 | |
| 1215 | ifdef TOOLNAME |
| 1216 | |
| 1217 | #--------------------------------------------------------- |
| 1218 | # Set up variables for building a tool. |
| 1219 | #--------------------------------------------------------- |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1220 | TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1221 | ifdef EXAMPLE_TOOL |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1222 | ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1223 | else |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1224 | ToolBuildPath := $(ToolDir)/$(TOOLEXENAME) |
| 1225 | endif |
| 1226 | |
| 1227 | # TOOLALIAS is a name to symlink (or copy) the tool to. |
| 1228 | ifdef TOOLALIAS |
| 1229 | ifdef EXAMPLE_TOOL |
| 1230 | ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT) |
| 1231 | else |
| 1232 | ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT) |
| 1233 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1234 | endif |
| 1235 | |
| 1236 | #--------------------------------------------------------- |
Chris Lattner | 8b04ea7 | 2009-02-26 17:47:49 +0000 | [diff] [blame] | 1237 | # Prune Exports |
| 1238 | #--------------------------------------------------------- |
| 1239 | |
| 1240 | # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by |
| 1241 | # not exporting all of the weak symbols from the binary. This reduces dyld |
| 1242 | # startup time by 4x on darwin in some cases. |
| 1243 | ifdef TOOL_NO_EXPORTS |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 1244 | ifeq ($(HOST_OS),Darwin) |
Chris Lattner | c6c5135 | 2009-03-10 17:15:56 +0000 | [diff] [blame] | 1245 | |
| 1246 | # Tiger tools don't support this. |
| 1247 | ifneq ($(DARWIN_MAJVERS),4) |
Chris Lattner | 8b04ea7 | 2009-02-26 17:47:49 +0000 | [diff] [blame] | 1248 | LD.Flags += -Wl,-exported_symbol -Wl,_main |
| 1249 | endif |
Chris Lattner | c6c5135 | 2009-03-10 17:15:56 +0000 | [diff] [blame] | 1250 | endif |
Chris Lattner | 8b04ea7 | 2009-02-26 17:47:49 +0000 | [diff] [blame] | 1251 | |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 1252 | ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD)) |
Nick Lewycky | 062ddcb | 2009-10-25 03:22:00 +0000 | [diff] [blame] | 1253 | LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map |
Chris Lattner | 8b04ea7 | 2009-02-26 17:47:49 +0000 | [diff] [blame] | 1254 | endif |
| 1255 | endif |
| 1256 | |
| 1257 | |
| 1258 | #--------------------------------------------------------- |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1259 | # Provide targets for building the tools |
| 1260 | #--------------------------------------------------------- |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1261 | all-local:: $(ToolBuildPath) $(ToolAliasBuildPath) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1262 | |
| 1263 | clean-local:: |
| 1264 | ifneq ($(strip $(ToolBuildPath)),) |
| 1265 | -$(Verb) $(RM) -f $(ToolBuildPath) |
| 1266 | endif |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1267 | ifneq ($(strip $(ToolAliasBuildPath)),) |
| 1268 | -$(Verb) $(RM) -f $(ToolAliasBuildPath) |
| 1269 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1270 | |
| 1271 | ifdef EXAMPLE_TOOL |
| 1272 | $(ToolBuildPath): $(ExmplDir)/.dir |
| 1273 | else |
| 1274 | $(ToolBuildPath): $(ToolDir)/.dir |
| 1275 | endif |
| 1276 | |
| 1277 | $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) |
| 1278 | $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1279 | $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1280 | $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS) |
| 1281 | $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \ |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1282 | $(StripWarnMsg) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1283 | |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1284 | ifneq ($(strip $(ToolAliasBuildPath)),) |
| 1285 | $(ToolAliasBuildPath): $(ToolBuildPath) |
| 1286 | $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg) |
| 1287 | $(Verb) $(RM) -f $(ToolAliasBuildPath) |
| 1288 | $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath) |
| 1289 | $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLNAME) \ |
| 1290 | $(StripWarnMsg) |
| 1291 | endif |
| 1292 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1293 | ifdef NO_INSTALL |
| 1294 | install-local:: |
| 1295 | $(Echo) Install circumvented with NO_INSTALL |
| 1296 | uninstall-local:: |
| 1297 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1298 | else |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1299 | DestTool = $(PROJ_bindir)/$(TOOLEXENAME) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1300 | |
| 1301 | install-local:: $(DestTool) |
| 1302 | |
Mike Stump | 98f72e0 | 2009-02-12 23:45:11 +0000 | [diff] [blame] | 1303 | $(DestTool): $(ToolBuildPath) $(PROJ_bindir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1304 | $(Echo) Installing $(BuildMode) $(DestTool) |
| 1305 | $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool) |
| 1306 | |
| 1307 | uninstall-local:: |
| 1308 | $(Echo) Uninstalling $(BuildMode) $(DestTool) |
| 1309 | -$(Verb) $(RM) -f $(DestTool) |
Daniel Dunbar | 1b6a195 | 2009-11-19 00:14:53 +0000 | [diff] [blame^] | 1310 | |
| 1311 | # TOOLALIAS install. |
| 1312 | ifdef TOOLALIAS |
| 1313 | DestToolAlias = $(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT) |
| 1314 | |
| 1315 | install-local:: $(DestToolAlias) |
| 1316 | |
| 1317 | $(DestToolAlias): $(DestTool) $(PROJ_bindir) |
| 1318 | $(Echo) Installing $(BuildMode) $(DestToolAlias) |
| 1319 | $(Verb) $(RM) -f $(DestToolAlias) |
| 1320 | $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias) |
| 1321 | |
| 1322 | uninstall-local:: |
| 1323 | $(Echo) Uninstalling $(BuildMode) $(DestToolAlias) |
| 1324 | -$(Verb) $(RM) -f $(DestToolAlias) |
| 1325 | endif |
| 1326 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1327 | endif |
| 1328 | endif |
| 1329 | |
| 1330 | ############################################################################### |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1331 | # Object Build Rules: Build object files based on sources |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1332 | ############################################################################### |
| 1333 | |
| 1334 | # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX" |
Anton Korobeynikov | 92c5181 | 2009-08-18 00:40:33 +0000 | [diff] [blame] | 1335 | ifeq ($(HOST_OS),HP-UX) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1336 | DISABLE_AUTO_DEPENDENCIES=1 |
| 1337 | endif |
| 1338 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1339 | # Provide rule sets for when dependency generation is enabled |
| 1340 | ifndef DISABLE_AUTO_DEPENDENCIES |
| 1341 | |
| 1342 | #--------------------------------------------------------- |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1343 | # Create .o files in the ObjDir directory from the .cpp and .c files... |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1344 | #--------------------------------------------------------- |
| 1345 | |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1346 | DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \ |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1347 | -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d" |
Gabor Greif | 14c4c8e | 2008-02-27 13:34:15 +0000 | [diff] [blame] | 1348 | |
Daniel Dunbar | 285108f | 2009-05-12 06:35:50 +0000 | [diff] [blame] | 1349 | # If the build succeeded, move the dependency file over, otherwise |
| 1350 | # remove it. |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1351 | DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \ |
| 1352 | else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi |
| 1353 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1354 | $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
Jakob Stoklund Olesen | 20bf333 | 2009-10-04 17:54:36 +0000 | [diff] [blame] | 1355 | $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1356 | $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \ |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1357 | $(DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1358 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1359 | $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1360 | $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1361 | $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \ |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1362 | $(DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1363 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1364 | $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1365 | $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1366 | $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \ |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1367 | $(DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1368 | |
| 1369 | #--------------------------------------------------------- |
| 1370 | # Create .bc files in the ObjDir directory from .cpp .cc and .c files... |
| 1371 | #--------------------------------------------------------- |
| 1372 | |
Daniel Dunbar | 285108f | 2009-05-12 06:35:50 +0000 | [diff] [blame] | 1373 | BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \ |
| 1374 | -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d" |
| 1375 | |
| 1376 | # If the build succeeded, move the dependency file over, otherwise |
| 1377 | # remove it. |
| 1378 | BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \ |
| 1379 | else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi |
| 1380 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1381 | $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1382 | $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)" |
Daniel Dunbar | 285108f | 2009-05-12 06:35:50 +0000 | [diff] [blame] | 1383 | $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \ |
| 1384 | $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \ |
| 1385 | $(BC_DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1386 | |
| 1387 | $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1388 | $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)" |
Daniel Dunbar | 285108f | 2009-05-12 06:35:50 +0000 | [diff] [blame] | 1389 | $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \ |
| 1390 | $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \ |
| 1391 | $(BC_DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1392 | |
| 1393 | $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC) |
| 1394 | $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)" |
Daniel Dunbar | 285108f | 2009-05-12 06:35:50 +0000 | [diff] [blame] | 1395 | $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \ |
| 1396 | $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \ |
| 1397 | $(BC_DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1398 | |
| 1399 | # Provide alternate rule sets if dependencies are disabled |
| 1400 | else |
| 1401 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1402 | $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1403 | $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1404 | $(Compile.CXX) $< -o $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1405 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1406 | $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1407 | $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1408 | $(Compile.CXX) $< -o $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1409 | |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1410 | $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1411 | $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1412 | $(Compile.C) $< -o $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1413 | |
| 1414 | $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1415 | $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)" |
| 1416 | $(BCCompile.CXX) $< -o $@ -S -emit-llvm |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1417 | |
| 1418 | $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1419 | $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)" |
| 1420 | $(BCCompile.CXX) $< -o $@ -S -emit-llvm |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1421 | |
| 1422 | $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC) |
| 1423 | $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)" |
| 1424 | $(BCCompile.C) $< -o $@ -S -emit-llvm |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1425 | |
| 1426 | endif |
| 1427 | |
| 1428 | |
| 1429 | ## Rules for building preprocessed (.i/.ii) outputs. |
| 1430 | $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1431 | $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file" |
| 1432 | $(Verb) $(Preprocess.CXX) $< -o $@ |
| 1433 | |
| 1434 | $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1435 | $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file" |
| 1436 | $(Verb) $(Preprocess.CXX) $< -o $@ |
| 1437 | |
| 1438 | $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1439 | $(Echo) "Compiling $*.c for $(BuildMode) build to .i file" |
| 1440 | $(Verb) $(Preprocess.C) $< -o $@ |
| 1441 | |
| 1442 | |
| 1443 | $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1444 | $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1445 | $(Compile.CXX) $< -o $@ -S |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1446 | |
| 1447 | $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1448 | $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1449 | $(Compile.CXX) $< -o $@ -S |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1450 | |
| 1451 | $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1452 | $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG) |
Nick Lewycky | 8d91e19 | 2009-02-26 07:44:16 +0000 | [diff] [blame] | 1453 | $(Compile.C) $< -o $@ -S |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1454 | |
| 1455 | |
| 1456 | # make the C and C++ compilers strip debug info out of bytecode libraries. |
| 1457 | ifdef DEBUG_RUNTIME |
Dan Gohman | 25de0de | 2009-09-08 15:52:56 +0000 | [diff] [blame] | 1458 | $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1459 | $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)" |
Dan Gohman | 25de0de | 2009-09-08 15:52:56 +0000 | [diff] [blame] | 1460 | $(Verb) $(LOPT) $< -std-compile-opts -o $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1461 | else |
Dan Gohman | 25de0de | 2009-09-08 15:52:56 +0000 | [diff] [blame] | 1462 | $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1463 | $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)" |
Dan Gohman | 25de0de | 2009-09-08 15:52:56 +0000 | [diff] [blame] | 1464 | $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1465 | endif |
| 1466 | |
| 1467 | |
| 1468 | #--------------------------------------------------------- |
| 1469 | # Provide rule to build .bc files from .ll sources, |
| 1470 | # regardless of dependencies |
| 1471 | #--------------------------------------------------------- |
| 1472 | $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS) |
| 1473 | $(Echo) "Compiling $*.ll for $(BuildMode) build" |
| 1474 | $(Verb) $(LLVMAS) $< -f -o $@ |
| 1475 | |
| 1476 | ############################################################################### |
| 1477 | # TABLEGEN: Provide rules for running tblgen to produce *.inc files |
| 1478 | ############################################################################### |
| 1479 | |
| 1480 | ifdef TARGET |
Mikhail Glushenkov | 72145e3 | 2009-03-02 09:42:59 +0000 | [diff] [blame] | 1481 | TABLEGEN_INC_FILES_COMMON = 1 |
| 1482 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1483 | |
Mikhail Glushenkov | 72145e3 | 2009-03-02 09:42:59 +0000 | [diff] [blame] | 1484 | ifdef LLVMC_BUILD_AUTOGENERATED_INC |
| 1485 | TABLEGEN_INC_FILES_COMMON = 1 |
| 1486 | endif |
| 1487 | |
| 1488 | ifdef TABLEGEN_INC_FILES_COMMON |
| 1489 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1490 | INCFiles := $(filter %.inc,$(BUILT_SOURCES)) |
| 1491 | INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp) |
| 1492 | .PRECIOUS: $(INCTMPFiles) $(INCFiles) |
| 1493 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1494 | # INCFiles rule: All of the tblgen generated files are emitted to |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1495 | # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows |
| 1496 | # us to only "touch" the real file if the contents of it change. IOW, if |
Daniel Dunbar | 90f3e7f | 2008-11-03 17:33:36 +0000 | [diff] [blame] | 1497 | # tblgen is modified, all of the .inc.tmp files are regenerated, but no |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1498 | # dependencies of the .inc files are, unless the contents of the .inc file |
| 1499 | # changes. |
| 1500 | $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp |
| 1501 | $(Verb) $(CMP) -s $@ $< || $(CP) $< $@ |
| 1502 | |
Mikhail Glushenkov | 72145e3 | 2009-03-02 09:42:59 +0000 | [diff] [blame] | 1503 | endif # TABLEGEN_INC_FILES_COMMON |
| 1504 | |
| 1505 | ifdef TARGET |
| 1506 | |
| 1507 | TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \ |
| 1508 | $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \ |
| 1509 | $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \ |
| 1510 | $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \ |
| 1511 | $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \ |
| 1512 | $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \ |
| 1513 | $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td) |
| 1514 | |
Rafael Espindola | 4d8cd53 | 2009-03-10 17:58:54 +0000 | [diff] [blame] | 1515 | # All of these files depend on tblgen and the .td files. |
| 1516 | $(INCTMPFiles) : $(TBLGEN) $(TDFiles) |
| 1517 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1518 | $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \ |
| 1519 | $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir |
| 1520 | $(Echo) "Building $(<F) register names with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1521 | $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1522 | |
| 1523 | $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \ |
| 1524 | $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir |
| 1525 | $(Echo) "Building $(<F) register information header with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1526 | $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1527 | |
| 1528 | $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \ |
| 1529 | $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir |
| 1530 | $(Echo) "Building $(<F) register info implementation with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1531 | $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1532 | |
| 1533 | $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \ |
| 1534 | $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir |
| 1535 | $(Echo) "Building $(<F) instruction names with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1536 | $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1537 | |
| 1538 | $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \ |
| 1539 | $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir |
| 1540 | $(Echo) "Building $(<F) instruction information with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1541 | $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1542 | |
| 1543 | $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \ |
| 1544 | $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir |
| 1545 | $(Echo) "Building $(<F) assembly writer with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1546 | $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1547 | |
| 1548 | $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \ |
| 1549 | $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir |
| 1550 | $(Echo) "Building $(<F) assembly writer #1 with tblgen" |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1551 | $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1552 | |
Daniel Dunbar | a9b4308 | 2009-07-13 18:35:35 +0000 | [diff] [blame] | 1553 | $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \ |
| 1554 | $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir |
| 1555 | $(Echo) "Building $(<F) assembly matcher with tblgen" |
| 1556 | $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $< |
| 1557 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1558 | $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \ |
| 1559 | $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir |
| 1560 | $(Echo) "Building $(<F) code emitter with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1561 | $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1562 | |
| 1563 | $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \ |
| 1564 | $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir |
Dan Gohman | b75dead | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1565 | $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1566 | $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1567 | |
Dan Gohman | b75dead | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1568 | $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \ |
| 1569 | $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir |
| 1570 | $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen" |
| 1571 | $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $< |
| 1572 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1573 | $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \ |
| 1574 | $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir |
| 1575 | $(Echo) "Building $(<F) subtarget information with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1576 | $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1577 | |
| 1578 | $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \ |
| 1579 | $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir |
| 1580 | $(Echo) "Building $(<F) calling convention information with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1581 | $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1582 | |
Dale Johannesen | fe5921a | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 1583 | $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \ |
Jakob Stoklund Olesen | f0b8209 | 2009-10-15 18:48:47 +0000 | [diff] [blame] | 1584 | $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir |
| 1585 | $(Echo) "Building $(<F) intrinsics information with tblgen" |
Dale Johannesen | fe5921a | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 1586 | $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $< |
| 1587 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1588 | clean-local:: |
| 1589 | -$(Verb) $(RM) -f $(INCFiles) |
| 1590 | |
Mikhail Glushenkov | 72145e3 | 2009-03-02 09:42:59 +0000 | [diff] [blame] | 1591 | endif # TARGET |
| 1592 | |
| 1593 | ifdef LLVMC_BUILD_AUTOGENERATED_INC |
| 1594 | |
Mikhail Glushenkov | 3b335a4 | 2009-04-21 19:46:10 +0000 | [diff] [blame] | 1595 | LLVMCPluginSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \ |
| 1596 | $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td))) |
Mikhail Glushenkov | 72145e3 | 2009-03-02 09:42:59 +0000 | [diff] [blame] | 1597 | |
| 1598 | TDFiles := $(LLVMCPluginSrc) \ |
| 1599 | $(strip $(wildcard $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td)) |
| 1600 | |
| 1601 | $(ObjDir)/AutoGenerated.inc.tmp: $(LLVMCPluginSrc) $(ObjDir)/.dir \ |
| 1602 | $(TBLGEN) $(TD_COMMON) |
| 1603 | $(Echo) "Building LLVMC configuration library with tblgen" |
| 1604 | $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $< |
| 1605 | |
| 1606 | endif # LLVMC_BUILD_AUTOGENERATED_INC |
| 1607 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1608 | ############################################################################### |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1609 | # OTHER RULES: Other rules needed |
| 1610 | ############################################################################### |
| 1611 | |
| 1612 | # To create postscript files from dot files... |
| 1613 | ifneq ($(DOT),false) |
| 1614 | %.ps: %.dot |
| 1615 | $(DOT) -Tps < $< > $@ |
| 1616 | else |
| 1617 | %.ps: %.dot |
| 1618 | $(Echo) "Cannot build $@: The program dot is not installed" |
| 1619 | endif |
| 1620 | |
| 1621 | # This rules ensures that header files that are removed still have a rule for |
| 1622 | # which they can be "generated." This allows make to ignore them and |
| 1623 | # reproduce the dependency lists. |
| 1624 | %.h:: ; |
| 1625 | %.hpp:: ; |
| 1626 | |
| 1627 | # Define clean-local to clean the current directory. Note that this uses a |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1628 | # very conservative approach ensuring that empty variables do not cause |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1629 | # errors or disastrous removal. |
| 1630 | clean-local:: |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 1631 | ifneq ($(strip $(ObjRootDir)),) |
| 1632 | -$(Verb) $(RM) -rf $(ObjRootDir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1633 | endif |
| 1634 | -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc |
| 1635 | ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set |
| 1636 | -$(Verb) $(RM) -f *$(SHLIBEXT) |
| 1637 | endif |
| 1638 | |
| 1639 | clean-all-local:: |
| 1640 | -$(Verb) $(RM) -rf Debug Release Profile |
| 1641 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1642 | |
| 1643 | ############################################################################### |
| 1644 | # DEPENDENCIES: Include the dependency files if we should |
| 1645 | ############################################################################### |
| 1646 | ifndef DISABLE_AUTO_DEPENDENCIES |
| 1647 | |
| 1648 | # If its not one of the cleaning targets |
Daniel Dunbar | a89194e | 2008-10-03 19:11:19 +0000 | [diff] [blame] | 1649 | ifndef IS_CLEANING_TARGET |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1650 | |
| 1651 | # Get the list of dependency files |
Daniel Dunbar | 285108f | 2009-05-12 06:35:50 +0000 | [diff] [blame] | 1652 | DependSourceFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources))) |
| 1653 | DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d) |
| 1654 | |
| 1655 | # Include bitcode dependency files if using bitcode libraries |
| 1656 | ifdef BYTECODE_LIBRARY |
| 1657 | DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d) |
| 1658 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1659 | |
Reid Spencer | dfb3d5b | 2007-07-23 08:20:46 +0000 | [diff] [blame] | 1660 | -include $(DependFiles) "" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1661 | |
| 1662 | endif |
| 1663 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1664 | endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1665 | |
| 1666 | ############################################################################### |
| 1667 | # CHECK: Running the test suite |
| 1668 | ############################################################################### |
| 1669 | |
Bill Wendling | ea4af67 | 2009-04-09 18:26:57 +0000 | [diff] [blame] | 1670 | check:: |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1671 | $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \ |
| 1672 | if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \ |
| 1673 | $(EchoCmd) Running test suite ; \ |
| 1674 | $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \ |
| 1675 | TESTSUITE=$(TESTSUITE) ; \ |
| 1676 | else \ |
| 1677 | $(EchoCmd) No Makefile in test directory ; \ |
| 1678 | fi ; \ |
| 1679 | else \ |
| 1680 | $(EchoCmd) No test directory ; \ |
| 1681 | fi |
| 1682 | |
Daniel Dunbar | 12ffa4d | 2009-09-08 05:31:44 +0000 | [diff] [blame] | 1683 | check-lit:: |
| 1684 | $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \ |
| 1685 | if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \ |
| 1686 | $(EchoCmd) Running test suite ; \ |
| 1687 | $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-lit ; \ |
| 1688 | else \ |
| 1689 | $(EchoCmd) No Makefile in test directory ; \ |
| 1690 | fi ; \ |
| 1691 | else \ |
| 1692 | $(EchoCmd) No test directory ; \ |
| 1693 | fi |
| 1694 | |
Daniel Dunbar | 5b6816d | 2009-09-20 06:17:21 +0000 | [diff] [blame] | 1695 | check-all:: |
| 1696 | $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \ |
| 1697 | if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \ |
| 1698 | $(EchoCmd) Running test suite ; \ |
| 1699 | $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \ |
| 1700 | else \ |
| 1701 | $(EchoCmd) No Makefile in test directory ; \ |
| 1702 | fi ; \ |
| 1703 | else \ |
| 1704 | $(EchoCmd) No test directory ; \ |
| 1705 | fi |
| 1706 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1707 | ############################################################################### |
Bill Wendling | 2e3646a | 2009-01-04 23:12:21 +0000 | [diff] [blame] | 1708 | # UNITTESTS: Running the unittests test suite |
| 1709 | ############################################################################### |
| 1710 | |
Bill Wendling | ea4af67 | 2009-04-09 18:26:57 +0000 | [diff] [blame] | 1711 | unittests:: |
Bill Wendling | 2e3646a | 2009-01-04 23:12:21 +0000 | [diff] [blame] | 1712 | $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \ |
| 1713 | if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \ |
| 1714 | $(EchoCmd) Running unittests test suite ; \ |
Daniel Dunbar | 4f1c655 | 2009-09-13 22:39:27 +0000 | [diff] [blame] | 1715 | $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \ |
Bill Wendling | 2e3646a | 2009-01-04 23:12:21 +0000 | [diff] [blame] | 1716 | else \ |
| 1717 | $(EchoCmd) No Makefile in unittests directory ; \ |
| 1718 | fi ; \ |
| 1719 | else \ |
| 1720 | $(EchoCmd) No unittests directory ; \ |
| 1721 | fi |
| 1722 | |
| 1723 | ############################################################################### |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1724 | # DISTRIBUTION: Handle construction of a distribution tarball |
| 1725 | ############################################################################### |
| 1726 | |
| 1727 | #------------------------------------------------------------------------ |
| 1728 | # Define distribution related variables |
| 1729 | #------------------------------------------------------------------------ |
| 1730 | DistName := $(PROJECT_NAME)-$(PROJ_VERSION) |
| 1731 | DistDir := $(PROJ_OBJ_ROOT)/$(DistName) |
| 1732 | TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName) |
| 1733 | DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz |
| 1734 | DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip |
| 1735 | DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2 |
| 1736 | DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \ |
| 1737 | ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \ |
| 1738 | Makefile.config.in configure autoconf |
| 1739 | DistOther := $(notdir $(wildcard \ |
| 1740 | $(PROJ_SRC_DIR)/*.h \ |
| 1741 | $(PROJ_SRC_DIR)/*.td \ |
| 1742 | $(PROJ_SRC_DIR)/*.def \ |
| 1743 | $(PROJ_SRC_DIR)/*.ll \ |
| 1744 | $(PROJ_SRC_DIR)/*.in)) |
| 1745 | DistSubDirs := $(SubDirs) |
| 1746 | DistSources = $(Sources) $(EXTRA_DIST) |
| 1747 | DistFiles = $(DistAlways) $(DistSources) $(DistOther) |
| 1748 | |
| 1749 | #------------------------------------------------------------------------ |
| 1750 | # We MUST build distribution with OBJ_DIR != SRC_DIR |
| 1751 | #------------------------------------------------------------------------ |
| 1752 | ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR)) |
| 1753 | dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip :: |
| 1754 | $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR |
| 1755 | |
| 1756 | else |
| 1757 | |
| 1758 | #------------------------------------------------------------------------ |
| 1759 | # Prevent attempt to run dist targets from anywhere but the top level |
| 1760 | #------------------------------------------------------------------------ |
| 1761 | ifneq ($(LEVEL),.) |
| 1762 | dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip :: |
| 1763 | $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT) |
| 1764 | else |
| 1765 | |
| 1766 | #------------------------------------------------------------------------ |
| 1767 | # Provide the top level targets |
| 1768 | #------------------------------------------------------------------------ |
| 1769 | |
| 1770 | dist-gzip:: $(DistTarGZip) |
| 1771 | |
| 1772 | $(DistTarGZip) : $(TopDistDir)/.makedistdir |
| 1773 | $(Echo) Packing gzipped distribution tar file. |
| 1774 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \ |
| 1775 | $(GZIP) -c > "$(DistTarGZip)" |
| 1776 | |
| 1777 | dist-bzip2:: $(DistTarBZ2) |
| 1778 | |
| 1779 | $(DistTarBZ2) : $(TopDistDir)/.makedistdir |
| 1780 | $(Echo) Packing bzipped distribution tar file. |
| 1781 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \ |
| 1782 | $(BZIP2) -c >$(DistTarBZ2) |
| 1783 | |
| 1784 | dist-zip:: $(DistZip) |
| 1785 | |
| 1786 | $(DistZip) : $(TopDistDir)/.makedistdir |
| 1787 | $(Echo) Packing zipped distribution file. |
| 1788 | $(Verb) rm -f $(DistZip) |
| 1789 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName) |
| 1790 | |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1791 | dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1792 | $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL ===== |
| 1793 | |
| 1794 | DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir |
| 1795 | |
| 1796 | dist-check:: $(DistTarGZip) |
| 1797 | $(Echo) Checking distribution tar file. |
| 1798 | $(Verb) if test -d $(DistCheckDir) ; then \ |
| 1799 | $(RM) -rf $(DistCheckDir) ; \ |
| 1800 | fi |
| 1801 | $(Verb) $(MKDIR) $(DistCheckDir) |
| 1802 | $(Verb) cd $(DistCheckDir) && \ |
| 1803 | $(MKDIR) $(DistCheckDir)/build && \ |
| 1804 | $(MKDIR) $(DistCheckDir)/install && \ |
| 1805 | gunzip -c $(DistTarGZip) | $(TAR) xf - && \ |
| 1806 | cd build && \ |
| 1807 | ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \ |
| 1808 | --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \ |
| 1809 | $(MAKE) all && \ |
| 1810 | $(MAKE) check && \ |
Bill Wendling | 2e3646a | 2009-01-04 23:12:21 +0000 | [diff] [blame] | 1811 | $(MAKE) unittests && \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1812 | $(MAKE) install && \ |
| 1813 | $(MAKE) uninstall && \ |
| 1814 | $(MAKE) dist-clean && \ |
| 1815 | $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution ===== |
| 1816 | |
| 1817 | dist-clean:: |
| 1818 | $(Echo) Cleaning distribution files |
| 1819 | -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \ |
| 1820 | $(DistCheckDir) |
| 1821 | |
| 1822 | endif |
| 1823 | |
| 1824 | #------------------------------------------------------------------------ |
| 1825 | # Provide the recursive distdir target for building the distribution directory |
| 1826 | #------------------------------------------------------------------------ |
| 1827 | distdir: $(DistDir)/.makedistdir |
| 1828 | $(DistDir)/.makedistdir: $(DistSources) |
| 1829 | $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \ |
| 1830 | if test -d "$(DistDir)" ; then \ |
| 1831 | find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \ |
| 1832 | exit 1 ; \ |
| 1833 | fi ; \ |
| 1834 | $(EchoCmd) Removing old $(DistDir) ; \ |
| 1835 | $(RM) -rf $(DistDir); \ |
| 1836 | $(EchoCmd) Making 'all' to verify build ; \ |
| 1837 | $(MAKE) ENABLE_OPTIMIZED=1 all ; \ |
| 1838 | fi |
| 1839 | $(Echo) Building Distribution Directory $(DistDir) |
Misha Brukman | 89fe516 | 2009-01-08 02:11:55 +0000 | [diff] [blame] | 1840 | $(Verb) $(MKDIR) $(DistDir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1841 | $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \ |
| 1842 | srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \ |
| 1843 | for file in $(DistFiles) ; do \ |
| 1844 | case "$$file" in \ |
| 1845 | $(PROJ_SRC_DIR)/*) \ |
| 1846 | file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \ |
| 1847 | ;; \ |
| 1848 | $(PROJ_SRC_ROOT)/*) \ |
| 1849 | file=`echo "$$file" | \ |
| 1850 | sed "s#^$$srcrootstrip/##"` \ |
| 1851 | ;; \ |
| 1852 | esac; \ |
| 1853 | if test -f "$(PROJ_SRC_DIR)/$$file" || \ |
| 1854 | test -d "$(PROJ_SRC_DIR)/$$file" ; then \ |
| 1855 | from_dir="$(PROJ_SRC_DIR)" ; \ |
| 1856 | elif test -f "$$file" || test -d "$$file" ; then \ |
| 1857 | from_dir=. ; \ |
| 1858 | fi ; \ |
| 1859 | to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \ |
| 1860 | if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \ |
| 1861 | to_dir="$(DistDir)/$$dir"; \ |
| 1862 | $(MKDIR) "$$to_dir" ; \ |
| 1863 | else \ |
| 1864 | to_dir="$(DistDir)"; \ |
| 1865 | fi; \ |
| 1866 | mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \ |
| 1867 | if test -n "$$mid_dir" ; then \ |
| 1868 | $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \ |
| 1869 | fi ; \ |
| 1870 | if test -d "$$from_dir/$$file"; then \ |
| 1871 | if test -d "$(PROJ_SRC_DIR)/$$file" && \ |
| 1872 | test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \ |
| 1873 | cd $(PROJ_SRC_DIR) ; \ |
| 1874 | $(TAR) cf - $$file --exclude .svn --exclude CVS | \ |
| 1875 | ( cd $$to_dir ; $(TAR) xf - ) ; \ |
| 1876 | cd $(PROJ_OBJ_DIR) ; \ |
| 1877 | else \ |
| 1878 | cd $$from_dir ; \ |
| 1879 | $(TAR) cf - $$file --exclude .svn --exclude CVS | \ |
| 1880 | ( cd $$to_dir ; $(TAR) xf - ) ; \ |
| 1881 | cd $(PROJ_OBJ_DIR) ; \ |
| 1882 | fi; \ |
| 1883 | elif test -f "$$from_dir/$$file" ; then \ |
| 1884 | $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \ |
| 1885 | elif test -L "$$from_dir/$$file" ; then \ |
| 1886 | $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \ |
| 1887 | elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \ |
| 1888 | $(EchoCmd) "===== WARNING: Distribution Source " \ |
| 1889 | "$$from_dir/$$file Not Found!" ; \ |
| 1890 | elif test "$(Verb)" != '@' ; then \ |
| 1891 | $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \ |
| 1892 | fi; \ |
| 1893 | done |
| 1894 | $(Verb) for subdir in $(DistSubDirs) ; do \ |
| 1895 | if test "$$subdir" \!= "." ; then \ |
| 1896 | new_distdir="$(DistDir)/$$subdir" ; \ |
| 1897 | test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \ |
| 1898 | ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \ |
| 1899 | DistDir="$$new_distdir" distdir ) || exit 1; \ |
| 1900 | fi; \ |
| 1901 | done |
| 1902 | $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \ |
| 1903 | $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \ |
| 1904 | $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \ |
| 1905 | -name .svn \) -print` ;\ |
| 1906 | $(MAKE) dist-hook ; \ |
| 1907 | $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \ |
| 1908 | -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \ |
| 1909 | -o ! -type d ! -perm -400 -exec chmod a+r {} \; \ |
| 1910 | -o ! -type d ! -perm -444 -exec \ |
| 1911 | $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \ |
| 1912 | || chmod -R a+r $(DistDir) ; \ |
| 1913 | fi |
| 1914 | |
| 1915 | # This is invoked by distdir target, define it as a no-op to avoid errors if not |
| 1916 | # defined by user. |
| 1917 | dist-hook:: |
| 1918 | |
| 1919 | endif |
| 1920 | |
| 1921 | ############################################################################### |
| 1922 | # TOP LEVEL - targets only to apply at the top level directory |
| 1923 | ############################################################################### |
| 1924 | |
| 1925 | ifeq ($(LEVEL),.) |
| 1926 | |
| 1927 | #------------------------------------------------------------------------ |
| 1928 | # Install support for the project's include files: |
| 1929 | #------------------------------------------------------------------------ |
| 1930 | ifdef NO_INSTALL |
| 1931 | install-local:: |
| 1932 | $(Echo) Install circumvented with NO_INSTALL |
| 1933 | uninstall-local:: |
| 1934 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1935 | else |
| 1936 | install-local:: |
| 1937 | $(Echo) Installing include files |
| 1938 | $(Verb) $(MKDIR) $(PROJ_includedir) |
| 1939 | $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \ |
| 1940 | cd $(PROJ_SRC_ROOT)/include && \ |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame] | 1941 | for hdr in `find . -type f '!' '(' -name '*~' \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1942 | -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \ |
| 1943 | grep -v .svn` ; do \ |
| 1944 | instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \ |
| 1945 | if test \! -d "$$instdir" ; then \ |
| 1946 | $(EchoCmd) Making install directory $$instdir ; \ |
| 1947 | $(MKDIR) $$instdir ;\ |
| 1948 | fi ; \ |
| 1949 | $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \ |
| 1950 | done ; \ |
| 1951 | fi |
| 1952 | ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) |
| 1953 | $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \ |
| 1954 | cd $(PROJ_OBJ_ROOT)/include && \ |
| 1955 | for hdr in `find . -type f -print | grep -v CVS` ; do \ |
| 1956 | $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \ |
| 1957 | done ; \ |
| 1958 | fi |
| 1959 | endif |
| 1960 | |
| 1961 | uninstall-local:: |
| 1962 | $(Echo) Uninstalling include files |
| 1963 | $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \ |
| 1964 | cd $(PROJ_SRC_ROOT)/include && \ |
| 1965 | $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \ |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame] | 1966 | '!' '(' -name '*~' -o -name '.#*' \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1967 | -o -name '*.in' ')' -print ')' | \ |
| 1968 | grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \ |
| 1969 | cd $(PROJ_SRC_ROOT)/include && \ |
| 1970 | $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \ |
| 1971 | -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \ |
| 1972 | fi |
| 1973 | endif |
| 1974 | endif |
| 1975 | |
| 1976 | check-line-length: |
Gabor Greif | b91ea9d | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 1977 | @echo searching for overlength lines in files: $(Sources) |
| 1978 | @echo |
| 1979 | @echo |
Gabor Greif | 3033d03 | 2008-08-28 22:32:39 +0000 | [diff] [blame] | 1980 | egrep -n '.{81}' $(Sources) /dev/null |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1981 | |
| 1982 | check-for-tabs: |
Gabor Greif | b91ea9d | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 1983 | @echo searching for tabs in files: $(Sources) |
| 1984 | @echo |
| 1985 | @echo |
Gabor Greif | 3033d03 | 2008-08-28 22:32:39 +0000 | [diff] [blame] | 1986 | egrep -n ' ' $(Sources) /dev/null |
Gabor Greif | b91ea9d | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 1987 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1988 | check-footprint: |
| 1989 | @ls -l $(LibDir) | awk '\ |
| 1990 | BEGIN { sum = 0; } \ |
| 1991 | { sum += $$5; } \ |
| 1992 | END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }' |
| 1993 | @ls -l $(ToolDir) | awk '\ |
| 1994 | BEGIN { sum = 0; } \ |
| 1995 | { sum += $$5; } \ |
| 1996 | END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }' |
| 1997 | #------------------------------------------------------------------------ |
| 1998 | # Print out the directories used for building |
| 1999 | #------------------------------------------------------------------------ |
| 2000 | printvars:: |
| 2001 | $(Echo) "BuildMode : " '$(BuildMode)' |
| 2002 | $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)' |
| 2003 | $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)' |
| 2004 | $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)' |
| 2005 | $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)' |
| 2006 | $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)' |
| 2007 | $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)' |
| 2008 | $(Echo) "PROJ_prefix : " '$(PROJ_prefix)' |
| 2009 | $(Echo) "PROJ_bindir : " '$(PROJ_bindir)' |
| 2010 | $(Echo) "PROJ_libdir : " '$(PROJ_libdir)' |
| 2011 | $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)' |
| 2012 | $(Echo) "PROJ_includedir : " '$(PROJ_includedir)' |
| 2013 | $(Echo) "UserTargets : " '$(UserTargets)' |
| 2014 | $(Echo) "ObjMakefiles : " '$(ObjMakefiles)' |
| 2015 | $(Echo) "SrcMakefiles : " '$(SrcMakefiles)' |
| 2016 | $(Echo) "ObjDir : " '$(ObjDir)' |
| 2017 | $(Echo) "LibDir : " '$(LibDir)' |
| 2018 | $(Echo) "ToolDir : " '$(ToolDir)' |
| 2019 | $(Echo) "ExmplDir : " '$(ExmplDir)' |
| 2020 | $(Echo) "Sources : " '$(Sources)' |
| 2021 | $(Echo) "TDFiles : " '$(TDFiles)' |
| 2022 | $(Echo) "INCFiles : " '$(INCFiles)' |
| 2023 | $(Echo) "INCTMPFiles : " '$(INCTMPFiles)' |
| 2024 | $(Echo) "PreConditions: " '$(PreConditions)' |
| 2025 | $(Echo) "Compile.CXX : " '$(Compile.CXX)' |
| 2026 | $(Echo) "Compile.C : " '$(Compile.C)' |
| 2027 | $(Echo) "Archive : " '$(Archive)' |
| 2028 | $(Echo) "YaccFiles : " '$(YaccFiles)' |
| 2029 | $(Echo) "LexFiles : " '$(LexFiles)' |
| 2030 | $(Echo) "Module : " '$(Module)' |
| 2031 | $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)' |
| 2032 | $(Echo) "SubDirs : " '$(SubDirs)' |
| 2033 | $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)' |
| 2034 | $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)' |
Daniel Dunbar | 190b3d5 | 2009-02-21 20:42:39 +0000 | [diff] [blame] | 2035 | |
| 2036 | ### |
| 2037 | # Debugging |
| 2038 | |
Daniel Dunbar | a6b0275 | 2009-03-06 22:23:25 +0000 | [diff] [blame] | 2039 | # General debugging rule, use 'make dbg-print-XXX' to print the |
Daniel Dunbar | 190b3d5 | 2009-02-21 20:42:39 +0000 | [diff] [blame] | 2040 | # definition, value and origin of XXX. |
Daniel Dunbar | a6b0275 | 2009-03-06 22:23:25 +0000 | [diff] [blame] | 2041 | make-print-%: |
Daniel Dunbar | 190b3d5 | 2009-02-21 20:42:39 +0000 | [diff] [blame] | 2042 | $(error PRINT: $(value $*) = "$($*)" (from $(origin $*))) |