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. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | # |
| 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 | #-------------------------------------------------------------------- |
| 22 | RecursiveTargets := all clean clean-all install uninstall install-bytecode |
| 23 | LocalTargets := all-local clean-local clean-all-local check-local \ |
| 24 | install-local printvars uninstall-local \ |
| 25 | install-bytecode-local |
Chris Lattner | 4259606 | 2007-09-26 06:10:47 +0000 | [diff] [blame] | 26 | TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 27 | dist-zip |
| 28 | UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets) |
| 29 | InternalTargets := preconditions distdir dist-hook |
| 30 | |
| 31 | ################################################################################ |
| 32 | # INITIALIZATION: Basic things the makefile needs |
| 33 | ################################################################################ |
| 34 | |
| 35 | #-------------------------------------------------------------------- |
| 36 | # Set the VPATH so that we can find source files. |
| 37 | #-------------------------------------------------------------------- |
| 38 | VPATH=$(PROJ_SRC_DIR) |
| 39 | |
| 40 | #-------------------------------------------------------------------- |
| 41 | # Reset the list of suffixes we know how to build. |
| 42 | #-------------------------------------------------------------------- |
| 43 | .SUFFIXES: |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame^] | 44 | .SUFFIXES: .c .cpp .cc .h .hpp .lo .o .a .bc .td .ps .dot .ll |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 45 | .SUFFIXES: $(SHLIBEXT) $(SUFFIXES) |
| 46 | |
| 47 | #-------------------------------------------------------------------- |
| 48 | # Mark all of these targets as phony to avoid implicit rule search |
| 49 | #-------------------------------------------------------------------- |
| 50 | .PHONY: $(UserTargets) $(InternalTargets) |
| 51 | |
| 52 | #-------------------------------------------------------------------- |
| 53 | # Make sure all the user-target rules are double colon rules and |
| 54 | # they are defined first. |
| 55 | #-------------------------------------------------------------------- |
| 56 | |
| 57 | $(UserTargets):: |
| 58 | |
| 59 | ################################################################################ |
| 60 | # PRECONDITIONS: that which must be built/checked first |
| 61 | ################################################################################ |
| 62 | |
| 63 | SrcMakefiles := $(filter %Makefile %Makefile.tests,\ |
| 64 | $(wildcard $(PROJ_SRC_DIR)/Makefile*)) |
| 65 | ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles)) |
| 66 | ConfigureScript := $(PROJ_SRC_ROOT)/configure |
| 67 | ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status |
| 68 | MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in)) |
| 69 | MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in)) |
| 70 | MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config |
| 71 | MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common |
| 72 | PreConditions := $(ConfigStatusScript) $(ObjMakefiles) |
| 73 | ifneq ($(MakefileCommonIn),) |
| 74 | PreConditions += $(MakefileCommon) |
| 75 | endif |
| 76 | |
| 77 | ifneq ($(MakefileConfigIn),) |
| 78 | PreConditions += $(MakefileConfig) |
| 79 | endif |
| 80 | |
| 81 | preconditions: $(PreConditions) |
| 82 | |
| 83 | #------------------------------------------------------------------------ |
| 84 | # Make sure the BUILT_SOURCES are built first |
| 85 | #------------------------------------------------------------------------ |
| 86 | $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES) |
| 87 | |
| 88 | clean-all-local:: |
| 89 | ifneq ($(strip $(BUILT_SOURCES)),) |
| 90 | -$(Verb) $(RM) -f $(BUILT_SOURCES) |
| 91 | endif |
| 92 | |
| 93 | ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT)) |
| 94 | spotless: |
| 95 | $(Verb) if test -x config.status ; then \ |
| 96 | $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \ |
| 97 | $(MKDIR) .spotless.save ; \ |
| 98 | $(MV) config.status .spotless.save ; \ |
| 99 | $(MV) mklib .spotless.save ; \ |
| 100 | $(MV) projects .spotless.save ; \ |
| 101 | $(RM) -rf * ; \ |
| 102 | $(MV) .spotless.save/config.status . ; \ |
| 103 | $(MV) .spotless.save/mklib . ; \ |
| 104 | $(MV) .spotless.save/projects . ; \ |
| 105 | $(RM) -rf .spotless.save ; \ |
| 106 | $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \ |
| 107 | $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ |
| 108 | $(ConfigStatusScript) ; \ |
| 109 | else \ |
| 110 | $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \ |
| 111 | fi |
| 112 | else |
| 113 | spotless: |
| 114 | $(EchoCmd) "spotless target not supported for objdir == srcdir" |
| 115 | endif |
| 116 | |
| 117 | $(BUILT_SOURCES) : $(ObjMakefiles) |
| 118 | |
| 119 | #------------------------------------------------------------------------ |
| 120 | # Make sure we're not using a stale configuration |
| 121 | #------------------------------------------------------------------------ |
| 122 | reconfigure: |
| 123 | $(Echo) Reconfiguring $(PROJ_OBJ_ROOT) |
| 124 | $(Verb) cd $(PROJ_OBJ_ROOT) && \ |
| 125 | if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \ |
| 126 | $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \ |
| 127 | fi ; \ |
| 128 | $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ |
| 129 | $(ConfigStatusScript) |
| 130 | |
| 131 | .PRECIOUS: $(ConfigStatusScript) |
| 132 | $(ConfigStatusScript): $(ConfigureScript) |
| 133 | $(Echo) Reconfiguring with $< |
| 134 | $(Verb) cd $(PROJ_OBJ_ROOT) && \ |
| 135 | if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \ |
| 136 | $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \ |
| 137 | fi ; \ |
| 138 | $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \ |
| 139 | $(ConfigStatusScript) |
| 140 | |
| 141 | #------------------------------------------------------------------------ |
| 142 | # Make sure the configuration makefile is up to date |
| 143 | #------------------------------------------------------------------------ |
| 144 | ifneq ($(MakefileConfigIn),) |
| 145 | $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript) |
| 146 | $(Echo) Regenerating $@ |
| 147 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config |
| 148 | endif |
| 149 | |
| 150 | ifneq ($(MakefileCommonIn),) |
| 151 | $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript) |
| 152 | $(Echo) Regenerating $@ |
| 153 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common |
| 154 | endif |
| 155 | |
| 156 | #------------------------------------------------------------------------ |
| 157 | # If the Makefile in the source tree has been updated, copy it over into the |
| 158 | # build tree. But, only do this if the source and object makefiles differ |
| 159 | #------------------------------------------------------------------------ |
| 160 | ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR)) |
| 161 | |
Gordon Henriksen | 4290f66 | 2008-03-10 15:58:40 +0000 | [diff] [blame] | 162 | Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 163 | $(Echo) "Updating Makefile" |
| 164 | $(Verb) $(MKDIR) $(@D) |
| 165 | $(Verb) $(CP) -f $< $@ |
| 166 | |
| 167 | # Copy the Makefile.* files unless we're in the root directory which avoids |
| 168 | # the copying of Makefile.config.in or other things that should be explicitly |
| 169 | # taken care of. |
| 170 | $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile% |
| 171 | @case '$?' in \ |
| 172 | *Makefile.rules) ;; \ |
| 173 | *.in) ;; \ |
Gordon Henriksen | 4290f66 | 2008-03-10 15:58:40 +0000 | [diff] [blame] | 174 | *) $(EchoCmd) "Updating $(@F)" ; \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 175 | $(MKDIR) $(@D) ; \ |
| 176 | $(CP) -f $< $@ ;; \ |
| 177 | esac |
Gabor Greif | 14c4c8e | 2008-02-27 13:34:15 +0000 | [diff] [blame] | 178 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 179 | endif |
| 180 | |
| 181 | #------------------------------------------------------------------------ |
| 182 | # Set up the basic dependencies |
| 183 | #------------------------------------------------------------------------ |
| 184 | $(UserTargets):: $(PreConditions) |
| 185 | |
| 186 | all:: all-local |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 187 | clean:: clean-local |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 188 | clean-all:: clean-local clean-all-local |
| 189 | install:: install-local |
| 190 | uninstall:: uninstall-local |
| 191 | install-local:: all-local |
| 192 | install-bytecode:: install-bytecode-local |
| 193 | |
| 194 | ############################################################################### |
| 195 | # VARIABLES: Set up various variables based on configuration data |
| 196 | ############################################################################### |
| 197 | |
Daniel Dunbar | a89194e | 2008-10-03 19:11:19 +0000 | [diff] [blame] | 198 | # Variable for if this make is for a "cleaning" target |
| 199 | ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),) |
| 200 | IS_CLEANING_TARGET=1 |
| 201 | endif |
| 202 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 203 | #-------------------------------------------------------------------- |
| 204 | # Variables derived from configuration we are building |
| 205 | #-------------------------------------------------------------------- |
| 206 | |
| 207 | CPP.Defines := |
| 208 | # OPTIMIZE_OPTION - The optimization level option we want to build LLVM with |
| 209 | # this can be overridden on the make command line. |
| 210 | ifneq ($(OS),MingW) |
| 211 | OPTIMIZE_OPTION := -O3 |
| 212 | else |
| 213 | OPTIMIZE_OPTION := -O2 |
| 214 | endif |
| 215 | |
| 216 | ifdef ENABLE_PROFILING |
| 217 | BuildMode := Profile |
Gordon Henriksen | 0996886 | 2008-01-06 21:54:35 +0000 | [diff] [blame] | 218 | CXX.Flags += $(OPTIMIZE_OPTION) -pg -g |
| 219 | C.Flags += $(OPTIMIZE_OPTION) -pg -g |
| 220 | LD.Flags += $(OPTIMIZE_OPTION) -pg -g |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 221 | KEEP_SYMBOLS := 1 |
| 222 | else |
| 223 | ifeq ($(ENABLE_OPTIMIZED),1) |
| 224 | BuildMode := Release |
| 225 | # Don't use -fomit-frame-pointer on Darwin or FreeBSD. |
| 226 | ifneq ($(OS),FreeBSD) |
| 227 | ifneq ($(OS),Darwin) |
| 228 | OmitFramePointer := -fomit-frame-pointer |
| 229 | endif |
| 230 | endif |
| 231 | |
| 232 | # Darwin requires -fstrict-aliasing to be explicitly enabled. |
| 233 | ifeq ($(OS),Darwin) |
Evan Cheng | 1bde889 | 2008-06-05 23:00:08 +0000 | [diff] [blame] | 234 | EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 235 | endif |
| 236 | |
Gordon Henriksen | 0996886 | 2008-01-06 21:54:35 +0000 | [diff] [blame] | 237 | CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) |
| 238 | C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer) |
| 239 | LD.Flags += $(OPTIMIZE_OPTION) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 240 | else |
| 241 | BuildMode := Debug |
Gordon Henriksen | 0996886 | 2008-01-06 21:54:35 +0000 | [diff] [blame] | 242 | CXX.Flags += -g |
| 243 | C.Flags += -g |
| 244 | LD.Flags += -g |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 245 | KEEP_SYMBOLS := 1 |
| 246 | endif |
| 247 | endif |
| 248 | |
Daniel Dunbar | 886e183 | 2008-09-02 17:35:16 +0000 | [diff] [blame] | 249 | #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1) |
| 250 | # CXX.Flags += -fvisibility-inlines-hidden |
| 251 | #endif |
| 252 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 253 | # IF REQUIRES_EH=1 is specified then don't disable exceptions |
| 254 | ifndef REQUIRES_EH |
| 255 | CXX.Flags += -fno-exceptions |
| 256 | endif |
| 257 | |
| 258 | # IF REQUIRES_RTTI=1 is specified then don't disable run-time type id |
| 259 | ifndef REQUIRES_RTTI |
| 260 | # CXX.Flags += -fno-rtti |
| 261 | endif |
| 262 | |
| 263 | # If DISABLE_ASSERTIONS=1 is specified (make command line or configured), |
| 264 | # then disable assertions by defining the appropriate preprocessor symbols. |
| 265 | ifdef DISABLE_ASSERTIONS |
| 266 | BuildMode := $(BuildMode)-Asserts |
| 267 | CPP.Defines += -DNDEBUG |
| 268 | else |
| 269 | CPP.Defines += -D_DEBUG |
| 270 | endif |
| 271 | |
| 272 | # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or |
| 273 | # configured), then enable expensive checks by defining the |
| 274 | # appropriate preprocessor symbols. |
| 275 | ifdef ENABLE_EXPENSIVE_CHECKS |
| 276 | BuildMode := $(BuildMode)+Checks |
Duncan Sands | 871e55f | 2008-12-09 21:33:20 +0000 | [diff] [blame] | 277 | CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 278 | endif |
| 279 | |
| 280 | ifeq ($(ENABLE_PIC),1) |
| 281 | CXX.Flags += -fPIC |
| 282 | C.Flags += -fPIC |
| 283 | endif |
| 284 | |
| 285 | CXX.Flags += $(CXXFLAGS) -Woverloaded-virtual |
| 286 | C.Flags += $(CFLAGS) |
| 287 | CPP.Defines += $(CPPFLAGS) |
| 288 | CPP.BaseFlags += $(CPP.Defines) |
| 289 | LD.Flags += $(LDFLAGS) |
| 290 | AR.Flags := cru |
| 291 | LibTool.Flags := --tag=CXX |
| 292 | |
| 293 | # Make Floating point IEEE compliant on Alpha. |
| 294 | ifeq ($(ARCH),Alpha) |
| 295 | CXX.Flags += -mieee |
| 296 | CPP.BaseFlags += -mieee |
| 297 | ifeq ($(ENABLE_PIC),0) |
| 298 | CXX.Flags += -fPIC |
| 299 | CPP.BaseFlags += -fPIC |
| 300 | endif |
| 301 | endif |
| 302 | |
| 303 | ifeq ($(ARCH),Alpha) |
| 304 | LD.Flags += -Wl,--no-relax |
| 305 | endif |
| 306 | |
| 307 | #-------------------------------------------------------------------- |
| 308 | # Directory locations |
| 309 | #-------------------------------------------------------------------- |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 310 | TargetMode := |
| 311 | ifeq ($(LLVM_CROSS_COMPILING),1) |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 312 | BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 313 | endif |
| 314 | |
| 315 | ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode) |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 316 | ObjDir := $(ObjRootDir) |
| 317 | LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib |
| 318 | ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin |
| 319 | ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples |
| 320 | LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib |
| 321 | LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin |
| 322 | LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 323 | CFERuntimeLibDir := $(LLVMGCCDIR)/lib |
| 324 | |
| 325 | #-------------------------------------------------------------------- |
| 326 | # Full Paths To Compiled Tools and Utilities |
| 327 | #-------------------------------------------------------------------- |
| 328 | EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]: |
| 329 | Echo = @$(EchoCmd) |
| 330 | ifndef LIBTOOL |
| 331 | LIBTOOL := $(LLVM_OBJ_ROOT)/mklib |
| 332 | endif |
| 333 | ifndef LLVMAS |
| 334 | LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT) |
| 335 | endif |
| 336 | ifndef TBLGEN |
| 337 | ifeq ($(LLVM_CROSS_COMPILING),1) |
Anton Korobeynikov | 0656517 | 2008-11-10 07:33:13 +0000 | [diff] [blame] | 338 | TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 339 | else |
| 340 | TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT) |
| 341 | endif |
| 342 | endif |
| 343 | LLVM_CONFIG := $(LLVMToolDir)/llvm-config |
| 344 | ifndef LLVMLD |
| 345 | LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT) |
| 346 | endif |
| 347 | ifndef LLVMDIS |
| 348 | LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT) |
| 349 | endif |
| 350 | ifndef LLI |
| 351 | LLI := $(LLVMToolDir)/lli$(EXEEXT) |
| 352 | endif |
| 353 | ifndef LLC |
| 354 | LLC := $(LLVMToolDir)/llc$(EXEEXT) |
| 355 | endif |
| 356 | ifndef LOPT |
| 357 | LOPT := $(LLVMToolDir)/opt$(EXEEXT) |
| 358 | endif |
| 359 | ifndef LBUGPOINT |
| 360 | LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT) |
| 361 | endif |
| 362 | ifndef LUPGRADE |
| 363 | LUPGRADE := $(LLVMToolDir)/llvm-upgrade$(EXEEXT) |
| 364 | endif |
| 365 | ifeq ($(LLVMGCC_MAJVERS),3) |
| 366 | UPGRADE_MSG = $(Echo) "Upgrading $(1) assembly to latest." |
| 367 | UPGRADE_LL = $(Verb)$(LUPGRADE) $(1) -o $(1).up.tmp -f ; $(MV) $(1).up.tmp $(1) |
| 368 | LLVMGCCWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGCC) |
| 369 | LLVMGXXWITHPATH := PATH="$(LLVMToolDir):$(PATH)" $(LLVMGXX) |
| 370 | else |
| 371 | UPGRADE_MSG = |
| 372 | UPGRADE_LL = |
| 373 | LLVMGCCWITHPATH := $(LLVMGCC) |
| 374 | LLVMGXXWITHPATH := $(LLVMGXX) |
| 375 | endif |
| 376 | |
| 377 | #-------------------------------------------------------------------- |
| 378 | # Adjust to user's request |
| 379 | #-------------------------------------------------------------------- |
| 380 | |
| 381 | # Adjust LD.Flags and Libtool.Flags depending on the kind of library that is |
| 382 | # to be built. Note that if LOADABLE_MODULE is specified then the resulting |
| 383 | # shared library can be opened with dlopen. Also, LOADABLE_MODULE implies |
| 384 | # several other things so we force them to be defined/on. |
| 385 | ifdef LOADABLE_MODULE |
| 386 | SHARED_LIBRARY := 1 |
| 387 | DONT_BUILD_RELINKED := 1 |
| 388 | LINK_LIBS_IN_SHARED := 1 |
| 389 | LD.Flags += -module |
| 390 | endif |
| 391 | |
| 392 | ifdef SHARED_LIBRARY |
| 393 | LD.Flags += -rpath $(LibDir) |
| 394 | else |
| 395 | LibTool.Flags += --tag=disable-shared |
| 396 | endif |
| 397 | |
| 398 | ifdef TOOL_VERBOSE |
| 399 | C.Flags += -v |
| 400 | CXX.Flags += -v |
| 401 | LD.Flags += -v |
| 402 | VERBOSE := 1 |
| 403 | endif |
| 404 | |
| 405 | # Adjust settings for verbose mode |
| 406 | ifndef VERBOSE |
| 407 | Verb := @ |
| 408 | LibTool.Flags += --silent |
Reid Spencer | dfb3d5b | 2007-07-23 08:20:46 +0000 | [diff] [blame] | 409 | AR.Flags += >/dev/null 2>/dev/null |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 410 | ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1 |
| 411 | else |
| 412 | ConfigureScriptFLAGS := |
| 413 | endif |
| 414 | |
| 415 | # By default, strip symbol information from executable |
| 416 | ifndef KEEP_SYMBOLS |
| 417 | Strip := $(PLATFORMSTRIPOPTS) |
| 418 | StripWarnMsg := "(without symbols)" |
| 419 | Install.StripFlag += -s |
| 420 | endif |
| 421 | |
| 422 | # Adjust linker flags for building an executable |
| 423 | ifdef TOOLNAME |
| 424 | ifdef EXAMPLE_TOOL |
| 425 | LD.Flags += -rpath $(ExmplDir) -export-dynamic |
| 426 | else |
| 427 | LD.Flags += -rpath $(ToolDir) -export-dynamic |
| 428 | endif |
| 429 | endif |
| 430 | |
| 431 | #---------------------------------------------------------- |
| 432 | # Options To Invoke Tools |
| 433 | #---------------------------------------------------------- |
| 434 | |
| 435 | CompileCommonOpts := -pedantic -Wall -W -Wwrite-strings -Wno-long-long \ |
| 436 | -Wunused -Wno-unused-parameter $(EXTRA_OPTIONS) |
| 437 | |
| 438 | ifeq ($(OS),HP-UX) |
| 439 | CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE |
| 440 | endif |
| 441 | |
| 442 | # If we are building a universal binary on Mac OS/X, pass extra options. This |
| 443 | # is useful to people that want to link the LLVM libraries into their universal |
| 444 | # apps. |
| 445 | # |
| 446 | # The following can be optionally specified: |
| 447 | # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use. |
| 448 | # For Mac OS/X 10.4 Intel machines, the traditional one is: |
| 449 | # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/ |
| 450 | # UNIVERSAL_ARCH can be optionally specified to be a list of architectures |
| 451 | # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to |
| 452 | # i386/ppc only. |
| 453 | ifdef UNIVERSAL |
| 454 | ifndef UNIVERSAL_ARCH |
| 455 | UNIVERSAL_ARCH := i386 ppc |
| 456 | endif |
| 457 | UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %) |
| 458 | CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS) |
| 459 | Relink.Flags := $(UNIVERSAL_ARCH_OPTIONS:%=-XCClinker %) |
| 460 | ifdef UNIVERSAL_SDK_PATH |
| 461 | CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH) |
| 462 | Relink.Flags += -XCClinker -isysroot -XCClinker $(UNIVERSAL_SDK_PATH) |
| 463 | endif |
| 464 | |
| 465 | # Building universal cannot compute dependencies automatically. |
| 466 | DISABLE_AUTO_DEPENDENCIES=1 |
| 467 | endif |
| 468 | |
Chris Lattner | 35c997c | 2008-06-24 17:44:42 +0000 | [diff] [blame] | 469 | ifeq ($(OS),SunOS) |
| 470 | CPP.BaseFlags += -include llvm/System/Solaris.h |
| 471 | endif |
| 472 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 473 | LD.Flags += -L$(LibDir) -L$(LLVMLibDir) |
Dan Gohman | 5a5e6e9 | 2008-10-17 01:33:43 +0000 | [diff] [blame] | 474 | 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] | 475 | # 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] | 476 | CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \ |
| 477 | $(patsubst %,-I%/include,\ |
Chris Lattner | 6ee4875 | 2008-01-28 04:18:41 +0000 | [diff] [blame] | 478 | $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \ |
| 479 | $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \ |
| 480 | $(CPP.BaseFlags) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 481 | |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 482 | ifeq ($(BUILD_COMPONENT), 1) |
| 483 | Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c |
| 484 | Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c |
| 485 | Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E |
| 486 | Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \ |
| 487 | $(LD.Flags) $(Strip) |
| 488 | Relink = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \ |
| 489 | $(Relink.Flags) |
| 490 | else |
| 491 | Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -c |
| 492 | Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) -c |
| 493 | Preprocess.CXX= $(CXX) $(CPP.Flags) $(CompileCommonOpts) $(CXX.Flags) -E |
| 494 | Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \ |
| 495 | $(LD.Flags) $(Strip) |
| 496 | Relink = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CompileCommonOpts) \ |
| 497 | $(Relink.Flags) |
| 498 | endif |
| 499 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 500 | LTCompile.C = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.C) |
| 501 | BCCompile.C = $(LLVMGCCWITHPATH) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) |
| 502 | Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CompileCommonOpts) -E |
| 503 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 504 | LTCompile.CXX = $(LIBTOOL) $(LibTool.Flags) --mode=compile $(Compile.CXX) |
| 505 | BCCompile.CXX = $(LLVMGXXWITHPATH) $(CPP.Flags) $(CXX.Flags) \ |
| 506 | $(CompileCommonOpts) |
| 507 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 508 | LTLink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Link) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 509 | LTRelink = $(LIBTOOL) $(LibTool.Flags) --mode=link $(Relink) |
| 510 | LTInstall = $(LIBTOOL) $(LibTool.Flags) --mode=install $(INSTALL) \ |
| 511 | $(Install.Flags) |
| 512 | ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755 |
| 513 | ScriptInstall = $(INSTALL) -m 0755 |
| 514 | DataInstall = $(INSTALL) -m 0644 |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 515 | |
| 516 | # When compiling under Mingw/Cygwin, the tblgen tool expects Windows |
| 517 | # paths. In this case, the SYSPATH function (defined in |
| 518 | # Makefile.config) transforms Unix paths into Windows paths. |
| 519 | TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \ |
| 520 | -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \ |
| 521 | -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target) |
| 522 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 523 | Archive = $(AR) $(AR.Flags) |
| 524 | LArchive = $(LLVMToolDir)/llvm-ar rcsf |
| 525 | ifdef RANLIB |
| 526 | Ranlib = $(RANLIB) |
| 527 | else |
| 528 | Ranlib = ranlib |
| 529 | endif |
| 530 | |
| 531 | #---------------------------------------------------------- |
| 532 | # Get the list of source files and compute object file |
| 533 | # names from them. |
| 534 | #---------------------------------------------------------- |
| 535 | |
| 536 | ifndef SOURCES |
| 537 | Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \ |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame^] | 538 | $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 539 | else |
| 540 | Sources := $(SOURCES) |
| 541 | endif |
| 542 | |
| 543 | ifdef BUILT_SOURCES |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame^] | 544 | Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES)) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 545 | endif |
| 546 | |
| 547 | BaseNameSources := $(sort $(basename $(Sources))) |
| 548 | |
| 549 | ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o) |
| 550 | ObjectsLO := $(BaseNameSources:%=$(ObjDir)/%.lo) |
| 551 | ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc) |
| 552 | |
| 553 | ############################################################################### |
| 554 | # DIRECTORIES: Handle recursive descent of directory structure |
| 555 | ############################################################################### |
| 556 | |
| 557 | #--------------------------------------------------------- |
| 558 | # Provide rules to make install dirs. This must be early |
| 559 | # in the file so they get built before dependencies |
| 560 | #--------------------------------------------------------- |
| 561 | |
| 562 | $(PROJ_bindir): $(PROJ_bindir)/.dir |
| 563 | $(PROJ_libdir): $(PROJ_libdir)/.dir |
| 564 | $(PROJ_includedir): $(PROJ_includedir)/.dir |
| 565 | $(PROJ_etcdir): $(PROJ_etcdir)/.dir |
| 566 | |
| 567 | # To create other directories, as needed, and timestamp their creation |
| 568 | %/.dir: |
| 569 | $(Verb) $(MKDIR) $* > /dev/null |
| 570 | $(Verb) $(DATE) > $@ |
| 571 | |
| 572 | .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir |
| 573 | .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir |
| 574 | |
| 575 | #--------------------------------------------------------- |
| 576 | # Handle the DIRS options for sequential construction |
| 577 | #--------------------------------------------------------- |
| 578 | |
| 579 | SubDirs := |
| 580 | ifdef DIRS |
| 581 | SubDirs += $(DIRS) |
| 582 | |
| 583 | ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) |
| 584 | $(RecursiveTargets):: |
| 585 | $(Verb) for dir in $(DIRS); do \ |
| 586 | if [ ! -f $$dir/Makefile ]; then \ |
| 587 | $(MKDIR) $$dir; \ |
| 588 | $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \ |
| 589 | fi; \ |
| 590 | ($(MAKE) -C $$dir $@ ) || exit 1; \ |
| 591 | done |
| 592 | else |
| 593 | $(RecursiveTargets):: |
| 594 | $(Verb) for dir in $(DIRS); do \ |
| 595 | ($(MAKE) -C $$dir $@ ) || exit 1; \ |
| 596 | done |
| 597 | endif |
| 598 | |
| 599 | endif |
| 600 | |
| 601 | #--------------------------------------------------------- |
| 602 | # Handle the EXPERIMENTAL_DIRS options ensuring success |
| 603 | # after each directory is built. |
| 604 | #--------------------------------------------------------- |
| 605 | ifdef EXPERIMENTAL_DIRS |
| 606 | $(RecursiveTargets):: |
| 607 | $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \ |
| 608 | if [ ! -f $$dir/Makefile ]; then \ |
| 609 | $(MKDIR) $$dir; \ |
| 610 | $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \ |
| 611 | fi; \ |
| 612 | ($(MAKE) -C $$dir $@ ) || exit 0; \ |
| 613 | done |
| 614 | endif |
| 615 | |
| 616 | #----------------------------------------------------------- |
| 617 | # Handle the PARALLEL_DIRS options for parallel construction |
| 618 | #----------------------------------------------------------- |
| 619 | ifdef PARALLEL_DIRS |
| 620 | |
| 621 | SubDirs += $(PARALLEL_DIRS) |
| 622 | |
| 623 | # Unfortunately, this list must be maintained if new recursive targets are added |
| 624 | all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS)) |
| 625 | clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS)) |
| 626 | clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS)) |
| 627 | install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS)) |
| 628 | uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS)) |
| 629 | install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS)) |
| 630 | |
| 631 | ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T)) |
| 632 | |
| 633 | $(ParallelTargets) : |
| 634 | $(Verb) if [ ! -f $(@D)/Makefile ]; then \ |
| 635 | $(MKDIR) $(@D); \ |
| 636 | $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \ |
| 637 | fi; \ |
| 638 | $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@) |
| 639 | endif |
| 640 | |
| 641 | #--------------------------------------------------------- |
| 642 | # Handle the OPTIONAL_DIRS options for directores that may |
| 643 | # or may not exist. |
| 644 | #--------------------------------------------------------- |
| 645 | ifdef OPTIONAL_DIRS |
| 646 | |
| 647 | SubDirs += $(OPTIONAL_DIRS) |
| 648 | |
| 649 | ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) |
| 650 | $(RecursiveTargets):: |
| 651 | $(Verb) for dir in $(OPTIONAL_DIRS); do \ |
| 652 | if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\ |
| 653 | if [ ! -f $$dir/Makefile ]; then \ |
| 654 | $(MKDIR) $$dir; \ |
| 655 | $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \ |
| 656 | fi; \ |
| 657 | ($(MAKE) -C$$dir $@ ) || exit 1; \ |
| 658 | fi \ |
| 659 | done |
| 660 | else |
| 661 | $(RecursiveTargets):: |
| 662 | $(Verb) for dir in $(OPTIONAL_DIRS); do \ |
| 663 | ($(MAKE) -C$$dir $@ ) || exit 1; \ |
| 664 | done |
| 665 | endif |
| 666 | endif |
| 667 | |
| 668 | #--------------------------------------------------------- |
| 669 | # Handle the CONFIG_FILES options |
| 670 | #--------------------------------------------------------- |
| 671 | ifdef CONFIG_FILES |
| 672 | |
| 673 | ifdef NO_INSTALL |
| 674 | install-local:: |
| 675 | $(Echo) Install circumvented with NO_INSTALL |
| 676 | uninstall-local:: |
| 677 | $(Echo) UnInstall circumvented with NO_INSTALL |
| 678 | else |
| 679 | install-local:: $(PROJ_etcdir) $(CONFIG_FILES) |
| 680 | $(Echo) Installing Configuration Files To $(PROJ_etcdir) |
| 681 | $(Verb)for file in $(CONFIG_FILES); do \ |
| 682 | if test -f $(PROJ_OBJ_DIR)/$${file} ; then \ |
| 683 | $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(PROJ_etcdir) ; \ |
| 684 | elif test -f $(PROJ_SRC_DIR)/$${file} ; then \ |
| 685 | $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(PROJ_etcdir) ; \ |
| 686 | else \ |
| 687 | $(ECHO) Error: cannot find config file $${file}. ; \ |
| 688 | fi \ |
| 689 | done |
| 690 | |
| 691 | uninstall-local:: |
| 692 | $(Echo) Uninstalling Configuration Files From $(PROJ_etcdir) |
| 693 | $(Verb)for file in $(CONFIG_FILES); do \ |
| 694 | $(RM) -f $(PROJ_etcdir)/$${file} ; \ |
| 695 | done |
| 696 | endif |
| 697 | |
| 698 | endif |
| 699 | |
| 700 | ############################################################################### |
| 701 | # Set up variables for building libararies |
| 702 | ############################################################################### |
| 703 | |
| 704 | #--------------------------------------------------------- |
| 705 | # Define various command line options pertaining to the |
| 706 | # libraries needed when linking. There are "Proj" libs |
| 707 | # (defined by the user's project) and "LLVM" libs (defined |
| 708 | # by the LLVM project). |
| 709 | #--------------------------------------------------------- |
| 710 | |
| 711 | ifdef USEDLIBS |
| 712 | ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS))) |
| 713 | ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions)) |
| 714 | ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS))) |
| 715 | ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs)) |
| 716 | endif |
| 717 | |
| 718 | ifdef LLVMLIBS |
| 719 | LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS))) |
| 720 | LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions)) |
| 721 | LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS))) |
| 722 | LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs)) |
| 723 | endif |
| 724 | |
Daniel Dunbar | a89194e | 2008-10-03 19:11:19 +0000 | [diff] [blame] | 725 | ifndef IS_CLEANING_TARGET |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 726 | ifdef LINK_COMPONENTS |
| 727 | |
| 728 | # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make |
| 729 | # clean in tools, then do a make in tools (instead of at the top level). |
| 730 | $(LLVM_CONFIG): |
| 731 | @echo "*** llvm-config doesn't exist - rebuilding it." |
| 732 | @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config |
Gabor Greif | 14c4c8e | 2008-02-27 13:34:15 +0000 | [diff] [blame] | 733 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 734 | $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG) |
| 735 | |
| 736 | ProjLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS)) |
| 737 | ProjLibsPaths += $(LLVM_CONFIG) \ |
| 738 | $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS)) |
| 739 | endif |
| 740 | endif |
| 741 | |
| 742 | ############################################################################### |
| 743 | # Library Build Rules: Four ways to build a library |
| 744 | ############################################################################### |
| 745 | |
| 746 | #--------------------------------------------------------- |
| 747 | # Bytecode Module Targets: |
| 748 | # If the user set MODULE_NAME then they want to build a |
| 749 | # bytecode module from the sources. We compile all the |
| 750 | # sources and link it together into a single bytecode |
| 751 | # module. |
| 752 | #--------------------------------------------------------- |
| 753 | |
| 754 | ifdef MODULE_NAME |
| 755 | ifeq ($(strip $(LLVMGCC)),) |
| 756 | $(warning Modules require llvm-gcc but no llvm-gcc is available ****) |
| 757 | else |
| 758 | |
| 759 | Module := $(LibDir)/$(MODULE_NAME).bc |
Andrew Lenharth | d002077 | 2008-02-25 22:41:55 +0000 | [diff] [blame] | 760 | LinkModule := $(LLVMLD) -L$(CFERuntimeLibDir) -r |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 761 | |
| 762 | |
| 763 | ifdef EXPORTED_SYMBOL_FILE |
| 764 | LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE) |
| 765 | endif |
| 766 | |
| 767 | $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) |
| 768 | $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@) |
| 769 | $(Verb) $(LinkModule) -o $@ $(ObjectsBC) |
| 770 | |
| 771 | all-local:: $(Module) |
| 772 | |
| 773 | clean-local:: |
| 774 | ifneq ($(strip $(Module)),) |
| 775 | -$(Verb) $(RM) -f $(Module) |
| 776 | endif |
| 777 | |
| 778 | ifdef BYTECODE_DESTINATION |
| 779 | ModuleDestDir := $(BYTECODE_DESTINATION) |
| 780 | else |
| 781 | ModuleDestDir := $(PROJ_libdir) |
| 782 | endif |
| 783 | |
| 784 | ifdef NO_INSTALL |
| 785 | install-local:: |
| 786 | $(Echo) Install circumvented with NO_INSTALL |
| 787 | uninstall-local:: |
| 788 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 789 | else |
| 790 | DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc |
| 791 | |
| 792 | install-module:: $(DestModule) |
| 793 | install-local:: $(DestModule) |
| 794 | |
| 795 | $(DestModule): $(ModuleDestDir) $(Module) |
| 796 | $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule) |
| 797 | $(Verb) $(DataInstall) $(Module) $(DestModule) |
| 798 | |
| 799 | uninstall-local:: |
| 800 | $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule) |
| 801 | -$(Verb) $(RM) -f $(DestModule) |
| 802 | endif |
| 803 | |
| 804 | endif |
| 805 | endif |
| 806 | |
| 807 | # if we're building a library ... |
| 808 | ifdef LIBRARYNAME |
| 809 | |
| 810 | # Make sure there isn't any extranous whitespace on the LIBRARYNAME option |
| 811 | LIBRARYNAME := $(strip $(LIBRARYNAME)) |
| 812 | ifdef LOADABLE_MODULE |
| 813 | LibName.LA := $(LibDir)/$(LIBRARYNAME).la |
| 814 | else |
| 815 | LibName.LA := $(LibDir)/lib$(LIBRARYNAME).la |
| 816 | endif |
| 817 | LibName.A := $(LibDir)/lib$(LIBRARYNAME).a |
| 818 | LibName.O := $(LibDir)/$(LIBRARYNAME).o |
| 819 | LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca |
| 820 | |
| 821 | #--------------------------------------------------------- |
| 822 | # Shared Library Targets: |
| 823 | # If the user asked for a shared library to be built |
| 824 | # with the SHARED_LIBRARY variable, then we provide |
| 825 | # targets for building them. |
| 826 | #--------------------------------------------------------- |
| 827 | ifdef SHARED_LIBRARY |
| 828 | |
| 829 | all-local:: $(LibName.LA) |
| 830 | |
| 831 | ifdef LINK_LIBS_IN_SHARED |
| 832 | ifdef LOADABLE_MODULE |
| 833 | SharedLibKindMessage := "Loadable Module" |
| 834 | else |
| 835 | SharedLibKindMessage := "Shared Library" |
| 836 | endif |
Chris Lattner | 94adbf9 | 2008-02-05 19:43:40 +0000 | [diff] [blame] | 837 | $(LibName.LA): $(ObjectsLO) $(ProjLibsPaths) $(LLVMLibsPaths) $(LibDir)/.dir |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 838 | $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \ |
| 839 | $(LIBRARYNAME)$(SHLIBEXT) |
| 840 | $(Verb) $(LTLink) -o $@ $(ObjectsLO) $(ProjLibsOptions) \ |
| 841 | $(LLVMLibsOptions) |
| 842 | $(Verb) $(LTInstall) $@ $(LibDir) |
| 843 | else |
| 844 | $(LibName.LA): $(ObjectsLO) $(LibDir)/.dir |
| 845 | $(Echo) Linking $(BuildMode) Shared Library $(LIBRARYNAME)$(SHLIBEXT) |
| 846 | $(Verb) $(LTLink) -o $@ $(ObjectsLO) |
| 847 | $(Verb) $(LTInstall) $@ $(LibDir) |
| 848 | endif |
| 849 | |
| 850 | clean-local:: |
| 851 | ifneq ($(strip $(LibName.LA)),) |
| 852 | -$(Verb) $(RM) -f $(LibName.LA) |
| 853 | endif |
| 854 | |
| 855 | ifdef NO_INSTALL |
| 856 | install-local:: |
| 857 | $(Echo) Install circumvented with NO_INSTALL |
| 858 | uninstall-local:: |
| 859 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 860 | else |
| 861 | DestSharedLib = $(PROJ_libdir)/lib$(LIBRARYNAME)$(SHLIBEXT) |
| 862 | |
| 863 | install-local:: $(DestSharedLib) |
| 864 | |
| 865 | $(DestSharedLib): $(PROJ_libdir) $(LibName.LA) |
| 866 | $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib) |
| 867 | $(Verb) $(LTInstall) $(LibName.LA) $(DestSharedLib) |
| 868 | $(Verb) $(LIBTOOL) --finish $(PROJ_libdir) |
| 869 | |
| 870 | uninstall-local:: |
| 871 | $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib) |
| 872 | -$(Verb) $(RM) -f $(PROJ_libdir)/lib$(LIBRARYNAME).* |
| 873 | endif |
| 874 | endif |
| 875 | |
| 876 | #--------------------------------------------------------- |
| 877 | # Bytecode Library Targets: |
| 878 | # If the user asked for a bytecode library to be built |
| 879 | # with the BYTECODE_LIBRARY variable, then we provide |
| 880 | # targets for building them. |
| 881 | #--------------------------------------------------------- |
| 882 | ifdef BYTECODE_LIBRARY |
| 883 | ifeq ($(strip $(LLVMGCC)),) |
| 884 | $(warning Bytecode libraries require llvm-gcc which could not be found ****) |
| 885 | else |
| 886 | |
| 887 | all-local:: $(LibName.BCA) |
| 888 | |
| 889 | ifdef EXPORTED_SYMBOL_FILE |
| 890 | BCLinkLib = $(LLVMLD) -L$(CFERuntimeLibDir) \ |
| 891 | -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE) |
| 892 | |
| 893 | $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \ |
| 894 | $(LLVMToolDir)/llvm-ar |
| 895 | $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \ |
| 896 | "(internalize)" |
| 897 | $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).o $(ObjectsBC) |
| 898 | $(Verb) $(RM) -f $@ |
| 899 | $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).o |
| 900 | else |
| 901 | $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \ |
| 902 | $(LLVMToolDir)/llvm-ar |
| 903 | $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) |
| 904 | $(Verb) $(RM) -f $@ |
| 905 | $(Verb) $(LArchive) $@ $(ObjectsBC) |
| 906 | |
| 907 | endif |
| 908 | |
| 909 | clean-local:: |
| 910 | ifneq ($(strip $(LibName.BCA)),) |
| 911 | -$(Verb) $(RM) -f $(LibName.BCA) |
| 912 | endif |
| 913 | |
| 914 | ifdef BYTECODE_DESTINATION |
| 915 | BytecodeDestDir := $(BYTECODE_DESTINATION) |
| 916 | else |
| 917 | BytecodeDestDir := $(PROJ_libdir) |
| 918 | endif |
| 919 | |
| 920 | DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a |
| 921 | |
| 922 | install-bytecode-local:: $(DestBytecodeLib) |
| 923 | |
| 924 | ifdef NO_INSTALL |
| 925 | install-local:: |
| 926 | $(Echo) Install circumvented with NO_INSTALL |
| 927 | uninstall-local:: |
| 928 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 929 | else |
| 930 | install-local:: $(DestBytecodeLib) |
| 931 | |
| 932 | $(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA) |
| 933 | $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib) |
| 934 | $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib) |
| 935 | |
| 936 | uninstall-local:: |
| 937 | $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib) |
| 938 | -$(Verb) $(RM) -f $(DestBytecodeLib) |
| 939 | endif |
| 940 | endif |
| 941 | endif |
| 942 | |
| 943 | #--------------------------------------------------------- |
| 944 | # ReLinked Library Targets: |
| 945 | # If the user explicitly requests a relinked library with |
| 946 | # BUILD_RELINKED, provide it. Otherwise, if they specify |
| 947 | # neither of BUILD_ARCHIVE or DONT_BUILD_RELINKED, give |
| 948 | # them one. |
| 949 | #--------------------------------------------------------- |
| 950 | ifndef BUILD_ARCHIVE |
| 951 | ifndef DONT_BUILD_RELINKED |
| 952 | BUILD_RELINKED = 1 |
| 953 | endif |
| 954 | endif |
| 955 | |
| 956 | ifdef BUILD_RELINKED |
| 957 | |
| 958 | all-local:: $(LibName.O) |
| 959 | |
| 960 | $(LibName.O): $(ObjectsO) $(LibDir)/.dir |
| 961 | $(Echo) Linking $(BuildMode) Object Library $(notdir $@) |
| 962 | $(Verb) $(LTRelink) -o $@ $(ObjectsO) |
| 963 | |
| 964 | clean-local:: |
| 965 | ifneq ($(strip $(LibName.O)),) |
| 966 | -$(Verb) $(RM) -f $(LibName.O) |
| 967 | endif |
| 968 | |
| 969 | ifdef NO_INSTALL |
| 970 | install-local:: |
| 971 | $(Echo) Install circumvented with NO_INSTALL |
| 972 | uninstall-local:: |
| 973 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 974 | else |
| 975 | DestRelinkedLib = $(PROJ_libdir)/$(LIBRARYNAME).o |
| 976 | |
| 977 | install-local:: $(DestRelinkedLib) |
| 978 | |
| 979 | $(DestRelinkedLib): $(PROJ_libdir) $(LibName.O) |
| 980 | $(Echo) Installing $(BuildMode) Object Library $(DestRelinkedLib) |
| 981 | $(Verb) $(LTInstall) $(LibName.O) $(DestRelinkedLib) |
| 982 | |
| 983 | uninstall-local:: |
| 984 | $(Echo) Uninstalling $(BuildMode) Object Library $(DestRelinkedLib) |
| 985 | -$(Verb) $(RM) -f $(DestRelinkedLib) |
| 986 | endif |
| 987 | endif |
| 988 | |
| 989 | #--------------------------------------------------------- |
| 990 | # Archive Library Targets: |
| 991 | # If the user wanted a regular archive library built, |
| 992 | # then we provide targets for building them. |
| 993 | #--------------------------------------------------------- |
| 994 | ifdef BUILD_ARCHIVE |
| 995 | |
| 996 | all-local:: $(LibName.A) |
| 997 | |
| 998 | $(LibName.A): $(ObjectsO) $(LibDir)/.dir |
| 999 | $(Echo) Building $(BuildMode) Archive Library $(notdir $@) |
| 1000 | -$(Verb) $(RM) -f $@ |
| 1001 | $(Verb) $(Archive) $@ $(ObjectsO) |
Bill Wendling | 84b4db2 | 2009-01-02 02:53:24 +0000 | [diff] [blame] | 1002 | -$(Verb) $(Ranlib) $@ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1003 | |
| 1004 | clean-local:: |
| 1005 | ifneq ($(strip $(LibName.A)),) |
| 1006 | -$(Verb) $(RM) -f $(LibName.A) |
| 1007 | endif |
| 1008 | |
| 1009 | ifdef NO_INSTALL |
| 1010 | install-local:: |
| 1011 | $(Echo) Install circumvented with NO_INSTALL |
| 1012 | uninstall-local:: |
| 1013 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1014 | else |
| 1015 | DestArchiveLib := $(PROJ_libdir)/lib$(LIBRARYNAME).a |
| 1016 | |
| 1017 | install-local:: $(DestArchiveLib) |
| 1018 | |
| 1019 | $(DestArchiveLib): $(PROJ_libdir) $(LibName.A) |
| 1020 | $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib) |
| 1021 | $(Verb) $(MKDIR) $(PROJ_libdir) |
| 1022 | $(Verb) $(LTInstall) $(LibName.A) $(DestArchiveLib) |
| 1023 | |
| 1024 | uninstall-local:: |
| 1025 | $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib) |
| 1026 | -$(Verb) $(RM) -f $(DestArchiveLib) |
| 1027 | endif |
| 1028 | endif |
| 1029 | |
| 1030 | # endif LIBRARYNAME |
| 1031 | endif |
| 1032 | |
| 1033 | ############################################################################### |
| 1034 | # Tool Build Rules: Build executable tool based on TOOLNAME option |
| 1035 | ############################################################################### |
| 1036 | |
| 1037 | ifdef TOOLNAME |
| 1038 | |
| 1039 | #--------------------------------------------------------- |
| 1040 | # Set up variables for building a tool. |
| 1041 | #--------------------------------------------------------- |
| 1042 | ifdef EXAMPLE_TOOL |
| 1043 | ToolBuildPath := $(ExmplDir)/$(strip $(TOOLNAME))$(EXEEXT) |
| 1044 | else |
| 1045 | ToolBuildPath := $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT) |
| 1046 | endif |
| 1047 | |
| 1048 | #--------------------------------------------------------- |
| 1049 | # Provide targets for building the tools |
| 1050 | #--------------------------------------------------------- |
| 1051 | all-local:: $(ToolBuildPath) |
| 1052 | |
| 1053 | clean-local:: |
| 1054 | ifneq ($(strip $(ToolBuildPath)),) |
| 1055 | -$(Verb) $(RM) -f $(ToolBuildPath) |
| 1056 | endif |
| 1057 | |
| 1058 | ifdef EXAMPLE_TOOL |
| 1059 | $(ToolBuildPath): $(ExmplDir)/.dir |
| 1060 | else |
| 1061 | $(ToolBuildPath): $(ToolDir)/.dir |
| 1062 | endif |
| 1063 | |
| 1064 | $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) |
| 1065 | $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg) |
| 1066 | $(Verb) $(LTLink) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \ |
| 1067 | $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS) |
| 1068 | $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \ |
| 1069 | $(StripWarnMsg) |
| 1070 | |
| 1071 | ifdef NO_INSTALL |
| 1072 | install-local:: |
| 1073 | $(Echo) Install circumvented with NO_INSTALL |
| 1074 | uninstall-local:: |
| 1075 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1076 | else |
| 1077 | DestTool = $(PROJ_bindir)/$(TOOLNAME) |
| 1078 | |
| 1079 | install-local:: $(DestTool) |
| 1080 | |
| 1081 | $(DestTool): $(PROJ_bindir) $(ToolBuildPath) |
| 1082 | $(Echo) Installing $(BuildMode) $(DestTool) |
| 1083 | $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool) |
| 1084 | |
| 1085 | uninstall-local:: |
| 1086 | $(Echo) Uninstalling $(BuildMode) $(DestTool) |
| 1087 | -$(Verb) $(RM) -f $(DestTool) |
| 1088 | endif |
| 1089 | endif |
| 1090 | |
| 1091 | ############################################################################### |
| 1092 | # Object Build Rules: Build object files based on sources |
| 1093 | ############################################################################### |
| 1094 | |
| 1095 | # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX" |
| 1096 | ifeq ($(OS),HP-UX) |
| 1097 | DISABLE_AUTO_DEPENDENCIES=1 |
| 1098 | endif |
| 1099 | |
| 1100 | ifdef SHARED_LIBRARY |
| 1101 | PIC_FLAG = "(PIC)" |
| 1102 | MAYBE_PIC_Compile.CXX = $(LTCompile.CXX) |
| 1103 | MAYBE_PIC_Compile.C = $(LTCompile.C) |
| 1104 | else |
| 1105 | MAYBE_PIC_Compile.CXX = $(Compile.CXX) |
| 1106 | MAYBE_PIC_Compile.C = $(Compile.C) |
| 1107 | endif |
| 1108 | |
| 1109 | # Provide rule sets for when dependency generation is enabled |
| 1110 | ifndef DISABLE_AUTO_DEPENDENCIES |
| 1111 | |
| 1112 | #--------------------------------------------------------- |
| 1113 | # Create .lo files in the ObjDir directory from the .cpp and .c files... |
| 1114 | #--------------------------------------------------------- |
| 1115 | |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1116 | DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \ |
| 1117 | -MT "$(ObjDir)/$*.lo" -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d" |
Gabor Greif | 14c4c8e | 2008-02-27 13:34:15 +0000 | [diff] [blame] | 1118 | |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1119 | # If the build succeeded, move the dependency file over. If it failed, put an |
| 1120 | # empty file there. |
| 1121 | DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \ |
| 1122 | else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi |
| 1123 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1124 | $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1125 | $(Echo) "Compiling $*.cpp for $(BuildMode) build " $(PIC_FLAG) |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1126 | $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \ |
| 1127 | $(DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1128 | |
| 1129 | $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1130 | $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG) |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1131 | $(Verb) if $(MAYBE_PIC_Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \ |
| 1132 | $(DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1133 | |
| 1134 | $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1135 | $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG) |
Chris Lattner | 87fd1ec | 2007-12-31 23:58:31 +0000 | [diff] [blame] | 1136 | $(Verb) if $(MAYBE_PIC_Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \ |
| 1137 | $(DEPEND_MOVEFILE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1138 | |
| 1139 | #--------------------------------------------------------- |
| 1140 | # Create .bc files in the ObjDir directory from .cpp .cc and .c files... |
| 1141 | #--------------------------------------------------------- |
| 1142 | |
| 1143 | $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1144 | $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)" |
| 1145 | $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \ |
| 1146 | $< -o $@ -S -emit-llvm ; \ |
| 1147 | then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \ |
| 1148 | else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi |
| 1149 | $(call UPGRADE_MSG,$@) |
| 1150 | $(call UPGRADE_LL,$@) |
| 1151 | |
| 1152 | $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1153 | $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)" |
| 1154 | $(Verb) if $(BCCompile.CXX) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCXXd" \ |
| 1155 | $< -o $@ -S -emit-llvm ; \ |
| 1156 | then $(MV) -f "$(ObjDir)/$*.BCCXXd" "$(ObjDir)/$*.d"; \ |
| 1157 | else $(RM) -f "$(ObjDir)/$*.BCCXXd"; exit 1; fi |
| 1158 | $(call UPGRADE_MSG,$@) |
| 1159 | $(call UPGRADE_LL,$@) |
| 1160 | |
| 1161 | $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC) |
| 1162 | $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)" |
| 1163 | $(Verb) if $(BCCompile.C) -MD -MT $@ -MP -MF "$(ObjDir)/$*.BCCd" \ |
| 1164 | $< -o $@ -S -emit-llvm ; \ |
| 1165 | then $(MV) -f "$(ObjDir)/$*.BCCd" "$(ObjDir)/$*.d"; \ |
| 1166 | else $(RM) -f "$(ObjDir)/$*.BCCd"; exit 1; fi |
| 1167 | $(call UPGRADE_MSG,$@) |
| 1168 | $(call UPGRADE_LL,$@) |
| 1169 | |
| 1170 | # Provide alternate rule sets if dependencies are disabled |
| 1171 | else |
| 1172 | |
| 1173 | $(ObjDir)/%.lo $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1174 | $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG) |
| 1175 | $(MAYBE_PIC_Compile.CXX) $< -o $@ |
| 1176 | |
| 1177 | $(ObjDir)/%.lo $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1178 | $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG) |
| 1179 | $(MAYBE_PIC_Compile.CXX) $< -o $@ |
| 1180 | |
| 1181 | $(ObjDir)/%.lo $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1182 | $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG) |
| 1183 | $(MAYBE_PIC_Compile.C) $< -o $@ |
| 1184 | |
| 1185 | $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1186 | $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)" |
| 1187 | $(BCCompile.CXX) $< -o $@ -S -emit-llvm |
| 1188 | $(call UPGRADE_MSG,$@) |
| 1189 | $(call UPGRADE_LL,$@) |
| 1190 | |
| 1191 | $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGXX) |
| 1192 | $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)" |
| 1193 | $(BCCompile.CXX) $< -o $@ -S -emit-llvm |
| 1194 | $(call UPGRADE_MSG,$@) |
| 1195 | $(call UPGRADE_LL,$@) |
| 1196 | |
| 1197 | $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMGCC) |
| 1198 | $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)" |
| 1199 | $(BCCompile.C) $< -o $@ -S -emit-llvm |
| 1200 | $(call UPGRADE_MSG,@) |
| 1201 | $(call UPGRADE_LL,@) |
| 1202 | |
| 1203 | endif |
| 1204 | |
| 1205 | |
| 1206 | ## Rules for building preprocessed (.i/.ii) outputs. |
| 1207 | $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1208 | $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file" |
| 1209 | $(Verb) $(Preprocess.CXX) $< -o $@ |
| 1210 | |
| 1211 | $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1212 | $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file" |
| 1213 | $(Verb) $(Preprocess.CXX) $< -o $@ |
| 1214 | |
| 1215 | $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1216 | $(Echo) "Compiling $*.c for $(BuildMode) build to .i file" |
| 1217 | $(Verb) $(Preprocess.C) $< -o $@ |
| 1218 | |
| 1219 | |
| 1220 | $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1221 | $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG) |
| 1222 | $(MAYBE_PIC_Compile.CXX) $< -o $@ -S |
| 1223 | |
| 1224 | $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1225 | $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG) |
| 1226 | $(MAYBE_PIC_Compile.CXX) $< -o $@ -S |
| 1227 | |
| 1228 | $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES) |
| 1229 | $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG) |
| 1230 | $(MAYBE_PIC_Compile.C) $< -o $@ -S |
| 1231 | |
| 1232 | |
| 1233 | # make the C and C++ compilers strip debug info out of bytecode libraries. |
| 1234 | ifdef DEBUG_RUNTIME |
| 1235 | $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT) |
| 1236 | $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)" |
| 1237 | $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f |
| 1238 | else |
| 1239 | $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT) |
| 1240 | $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)" |
| 1241 | $(Verb) $(LLVMAS) $< -o - | \ |
| 1242 | $(LOPT) -std-compile-opts -strip-debug -o $@ -f |
| 1243 | endif |
| 1244 | |
| 1245 | |
| 1246 | #--------------------------------------------------------- |
| 1247 | # Provide rule to build .bc files from .ll sources, |
| 1248 | # regardless of dependencies |
| 1249 | #--------------------------------------------------------- |
| 1250 | $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS) |
| 1251 | $(Echo) "Compiling $*.ll for $(BuildMode) build" |
| 1252 | $(Verb) $(LLVMAS) $< -f -o $@ |
| 1253 | |
| 1254 | ############################################################################### |
| 1255 | # TABLEGEN: Provide rules for running tblgen to produce *.inc files |
| 1256 | ############################################################################### |
| 1257 | |
| 1258 | ifdef TARGET |
| 1259 | |
| 1260 | TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \ |
Evan Cheng | 301aaf5 | 2008-11-24 07:34:46 +0000 | [diff] [blame] | 1261 | $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \ |
| 1262 | $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \ |
| 1263 | $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \ |
| 1264 | $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1265 | $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \ |
| 1266 | $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td) |
| 1267 | INCFiles := $(filter %.inc,$(BUILT_SOURCES)) |
| 1268 | INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp) |
| 1269 | .PRECIOUS: $(INCTMPFiles) $(INCFiles) |
| 1270 | |
| 1271 | # All of these files depend on tblgen and the .td files. |
| 1272 | $(INCTMPFiles) : $(TBLGEN) $(TDFiles) |
| 1273 | |
| 1274 | # INCFiles rule: All of the tblgen generated files are emitted to |
| 1275 | # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows |
| 1276 | # 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] | 1277 | # 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] | 1278 | # dependencies of the .inc files are, unless the contents of the .inc file |
| 1279 | # changes. |
| 1280 | $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp |
| 1281 | $(Verb) $(CMP) -s $@ $< || $(CP) $< $@ |
| 1282 | |
| 1283 | $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \ |
| 1284 | $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir |
| 1285 | $(Echo) "Building $(<F) register names with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1286 | $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1287 | |
| 1288 | $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \ |
| 1289 | $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir |
| 1290 | $(Echo) "Building $(<F) register information header with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1291 | $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1292 | |
| 1293 | $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \ |
| 1294 | $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir |
| 1295 | $(Echo) "Building $(<F) register info implementation with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1296 | $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1297 | |
| 1298 | $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \ |
| 1299 | $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir |
| 1300 | $(Echo) "Building $(<F) instruction names with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1301 | $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1302 | |
| 1303 | $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \ |
| 1304 | $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir |
| 1305 | $(Echo) "Building $(<F) instruction information with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1306 | $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1307 | |
| 1308 | $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \ |
| 1309 | $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir |
| 1310 | $(Echo) "Building $(<F) assembly writer with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1311 | $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1312 | |
| 1313 | $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \ |
| 1314 | $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir |
| 1315 | $(Echo) "Building $(<F) assembly writer #1 with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1316 | $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1317 | |
| 1318 | $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \ |
| 1319 | $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir |
| 1320 | $(Echo) "Building $(<F) code emitter with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1321 | $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1322 | |
| 1323 | $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \ |
| 1324 | $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir |
Dan Gohman | b75dead | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1325 | $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1326 | $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1327 | |
Dan Gohman | b75dead | 2008-08-13 20:19:35 +0000 | [diff] [blame] | 1328 | $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \ |
| 1329 | $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir |
| 1330 | $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen" |
| 1331 | $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $< |
| 1332 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1333 | $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \ |
| 1334 | $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir |
| 1335 | $(Echo) "Building $(<F) subtarget information with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1336 | $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1337 | |
| 1338 | $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \ |
| 1339 | $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir |
| 1340 | $(Echo) "Building $(<F) calling convention information with tblgen" |
Chris Lattner | 1b0a3a1 | 2008-01-15 23:27:40 +0000 | [diff] [blame] | 1341 | $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $< |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1342 | |
| 1343 | clean-local:: |
| 1344 | -$(Verb) $(RM) -f $(INCFiles) |
| 1345 | |
| 1346 | endif |
| 1347 | |
| 1348 | ############################################################################### |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1349 | # OTHER RULES: Other rules needed |
| 1350 | ############################################################################### |
| 1351 | |
| 1352 | # To create postscript files from dot files... |
| 1353 | ifneq ($(DOT),false) |
| 1354 | %.ps: %.dot |
| 1355 | $(DOT) -Tps < $< > $@ |
| 1356 | else |
| 1357 | %.ps: %.dot |
| 1358 | $(Echo) "Cannot build $@: The program dot is not installed" |
| 1359 | endif |
| 1360 | |
| 1361 | # This rules ensures that header files that are removed still have a rule for |
| 1362 | # which they can be "generated." This allows make to ignore them and |
| 1363 | # reproduce the dependency lists. |
| 1364 | %.h:: ; |
| 1365 | %.hpp:: ; |
| 1366 | |
| 1367 | # Define clean-local to clean the current directory. Note that this uses a |
| 1368 | # very conservative approach ensuring that empty variables do not cause |
| 1369 | # errors or disastrous removal. |
| 1370 | clean-local:: |
Jim Grosbach | e4c032e | 2008-10-02 22:56:44 +0000 | [diff] [blame] | 1371 | ifneq ($(strip $(ObjRootDir)),) |
| 1372 | -$(Verb) $(RM) -rf $(ObjRootDir) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1373 | endif |
| 1374 | -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc |
| 1375 | ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set |
| 1376 | -$(Verb) $(RM) -f *$(SHLIBEXT) |
| 1377 | endif |
| 1378 | |
| 1379 | clean-all-local:: |
| 1380 | -$(Verb) $(RM) -rf Debug Release Profile |
| 1381 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1382 | |
| 1383 | ############################################################################### |
| 1384 | # DEPENDENCIES: Include the dependency files if we should |
| 1385 | ############################################################################### |
| 1386 | ifndef DISABLE_AUTO_DEPENDENCIES |
| 1387 | |
| 1388 | # If its not one of the cleaning targets |
Daniel Dunbar | a89194e | 2008-10-03 19:11:19 +0000 | [diff] [blame] | 1389 | ifndef IS_CLEANING_TARGET |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1390 | |
| 1391 | # Get the list of dependency files |
| 1392 | DependFiles := $(basename $(filter %.cpp %.c %.cc, $(Sources))) |
| 1393 | DependFiles := $(DependFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d) |
| 1394 | |
Reid Spencer | dfb3d5b | 2007-07-23 08:20:46 +0000 | [diff] [blame] | 1395 | -include $(DependFiles) "" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1396 | |
| 1397 | endif |
| 1398 | |
| 1399 | endif |
| 1400 | |
| 1401 | ############################################################################### |
| 1402 | # CHECK: Running the test suite |
| 1403 | ############################################################################### |
| 1404 | |
| 1405 | check:: |
| 1406 | $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \ |
| 1407 | if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \ |
| 1408 | $(EchoCmd) Running test suite ; \ |
| 1409 | $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \ |
| 1410 | TESTSUITE=$(TESTSUITE) ; \ |
| 1411 | else \ |
| 1412 | $(EchoCmd) No Makefile in test directory ; \ |
| 1413 | fi ; \ |
| 1414 | else \ |
| 1415 | $(EchoCmd) No test directory ; \ |
| 1416 | fi |
| 1417 | |
| 1418 | ############################################################################### |
| 1419 | # DISTRIBUTION: Handle construction of a distribution tarball |
| 1420 | ############################################################################### |
| 1421 | |
| 1422 | #------------------------------------------------------------------------ |
| 1423 | # Define distribution related variables |
| 1424 | #------------------------------------------------------------------------ |
| 1425 | DistName := $(PROJECT_NAME)-$(PROJ_VERSION) |
| 1426 | DistDir := $(PROJ_OBJ_ROOT)/$(DistName) |
| 1427 | TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName) |
| 1428 | DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz |
| 1429 | DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip |
| 1430 | DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2 |
| 1431 | DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \ |
| 1432 | ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \ |
| 1433 | Makefile.config.in configure autoconf |
| 1434 | DistOther := $(notdir $(wildcard \ |
| 1435 | $(PROJ_SRC_DIR)/*.h \ |
| 1436 | $(PROJ_SRC_DIR)/*.td \ |
| 1437 | $(PROJ_SRC_DIR)/*.def \ |
| 1438 | $(PROJ_SRC_DIR)/*.ll \ |
| 1439 | $(PROJ_SRC_DIR)/*.in)) |
| 1440 | DistSubDirs := $(SubDirs) |
| 1441 | DistSources = $(Sources) $(EXTRA_DIST) |
| 1442 | DistFiles = $(DistAlways) $(DistSources) $(DistOther) |
| 1443 | |
| 1444 | #------------------------------------------------------------------------ |
| 1445 | # We MUST build distribution with OBJ_DIR != SRC_DIR |
| 1446 | #------------------------------------------------------------------------ |
| 1447 | ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR)) |
| 1448 | dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip :: |
| 1449 | $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR |
| 1450 | |
| 1451 | else |
| 1452 | |
| 1453 | #------------------------------------------------------------------------ |
| 1454 | # Prevent attempt to run dist targets from anywhere but the top level |
| 1455 | #------------------------------------------------------------------------ |
| 1456 | ifneq ($(LEVEL),.) |
| 1457 | dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip :: |
| 1458 | $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT) |
| 1459 | else |
| 1460 | |
| 1461 | #------------------------------------------------------------------------ |
| 1462 | # Provide the top level targets |
| 1463 | #------------------------------------------------------------------------ |
| 1464 | |
| 1465 | dist-gzip:: $(DistTarGZip) |
| 1466 | |
| 1467 | $(DistTarGZip) : $(TopDistDir)/.makedistdir |
| 1468 | $(Echo) Packing gzipped distribution tar file. |
| 1469 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \ |
| 1470 | $(GZIP) -c > "$(DistTarGZip)" |
| 1471 | |
| 1472 | dist-bzip2:: $(DistTarBZ2) |
| 1473 | |
| 1474 | $(DistTarBZ2) : $(TopDistDir)/.makedistdir |
| 1475 | $(Echo) Packing bzipped distribution tar file. |
| 1476 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \ |
| 1477 | $(BZIP2) -c >$(DistTarBZ2) |
| 1478 | |
| 1479 | dist-zip:: $(DistZip) |
| 1480 | |
| 1481 | $(DistZip) : $(TopDistDir)/.makedistdir |
| 1482 | $(Echo) Packing zipped distribution file. |
| 1483 | $(Verb) rm -f $(DistZip) |
| 1484 | $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName) |
| 1485 | |
| 1486 | dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip) |
| 1487 | $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL ===== |
| 1488 | |
| 1489 | DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir |
| 1490 | |
| 1491 | dist-check:: $(DistTarGZip) |
| 1492 | $(Echo) Checking distribution tar file. |
| 1493 | $(Verb) if test -d $(DistCheckDir) ; then \ |
| 1494 | $(RM) -rf $(DistCheckDir) ; \ |
| 1495 | fi |
| 1496 | $(Verb) $(MKDIR) $(DistCheckDir) |
| 1497 | $(Verb) cd $(DistCheckDir) && \ |
| 1498 | $(MKDIR) $(DistCheckDir)/build && \ |
| 1499 | $(MKDIR) $(DistCheckDir)/install && \ |
| 1500 | gunzip -c $(DistTarGZip) | $(TAR) xf - && \ |
| 1501 | cd build && \ |
| 1502 | ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \ |
| 1503 | --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \ |
| 1504 | $(MAKE) all && \ |
| 1505 | $(MAKE) check && \ |
| 1506 | $(MAKE) install && \ |
| 1507 | $(MAKE) uninstall && \ |
| 1508 | $(MAKE) dist-clean && \ |
| 1509 | $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution ===== |
| 1510 | |
| 1511 | dist-clean:: |
| 1512 | $(Echo) Cleaning distribution files |
| 1513 | -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \ |
| 1514 | $(DistCheckDir) |
| 1515 | |
| 1516 | endif |
| 1517 | |
| 1518 | #------------------------------------------------------------------------ |
| 1519 | # Provide the recursive distdir target for building the distribution directory |
| 1520 | #------------------------------------------------------------------------ |
| 1521 | distdir: $(DistDir)/.makedistdir |
| 1522 | $(DistDir)/.makedistdir: $(DistSources) |
| 1523 | $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \ |
| 1524 | if test -d "$(DistDir)" ; then \ |
| 1525 | find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \ |
| 1526 | exit 1 ; \ |
| 1527 | fi ; \ |
| 1528 | $(EchoCmd) Removing old $(DistDir) ; \ |
| 1529 | $(RM) -rf $(DistDir); \ |
| 1530 | $(EchoCmd) Making 'all' to verify build ; \ |
| 1531 | $(MAKE) ENABLE_OPTIMIZED=1 all ; \ |
| 1532 | fi |
| 1533 | $(Echo) Building Distribution Directory $(DistDir) |
| 1534 | $(Verb) $(MKDIR) $(DistDir) |
| 1535 | $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \ |
| 1536 | srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \ |
| 1537 | for file in $(DistFiles) ; do \ |
| 1538 | case "$$file" in \ |
| 1539 | $(PROJ_SRC_DIR)/*) \ |
| 1540 | file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \ |
| 1541 | ;; \ |
| 1542 | $(PROJ_SRC_ROOT)/*) \ |
| 1543 | file=`echo "$$file" | \ |
| 1544 | sed "s#^$$srcrootstrip/##"` \ |
| 1545 | ;; \ |
| 1546 | esac; \ |
| 1547 | if test -f "$(PROJ_SRC_DIR)/$$file" || \ |
| 1548 | test -d "$(PROJ_SRC_DIR)/$$file" ; then \ |
| 1549 | from_dir="$(PROJ_SRC_DIR)" ; \ |
| 1550 | elif test -f "$$file" || test -d "$$file" ; then \ |
| 1551 | from_dir=. ; \ |
| 1552 | fi ; \ |
| 1553 | to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \ |
| 1554 | if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \ |
| 1555 | to_dir="$(DistDir)/$$dir"; \ |
| 1556 | $(MKDIR) "$$to_dir" ; \ |
| 1557 | else \ |
| 1558 | to_dir="$(DistDir)"; \ |
| 1559 | fi; \ |
| 1560 | mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \ |
| 1561 | if test -n "$$mid_dir" ; then \ |
| 1562 | $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \ |
| 1563 | fi ; \ |
| 1564 | if test -d "$$from_dir/$$file"; then \ |
| 1565 | if test -d "$(PROJ_SRC_DIR)/$$file" && \ |
| 1566 | test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \ |
| 1567 | cd $(PROJ_SRC_DIR) ; \ |
| 1568 | $(TAR) cf - $$file --exclude .svn --exclude CVS | \ |
| 1569 | ( cd $$to_dir ; $(TAR) xf - ) ; \ |
| 1570 | cd $(PROJ_OBJ_DIR) ; \ |
| 1571 | else \ |
| 1572 | cd $$from_dir ; \ |
| 1573 | $(TAR) cf - $$file --exclude .svn --exclude CVS | \ |
| 1574 | ( cd $$to_dir ; $(TAR) xf - ) ; \ |
| 1575 | cd $(PROJ_OBJ_DIR) ; \ |
| 1576 | fi; \ |
| 1577 | elif test -f "$$from_dir/$$file" ; then \ |
| 1578 | $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \ |
| 1579 | elif test -L "$$from_dir/$$file" ; then \ |
| 1580 | $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \ |
| 1581 | elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \ |
| 1582 | $(EchoCmd) "===== WARNING: Distribution Source " \ |
| 1583 | "$$from_dir/$$file Not Found!" ; \ |
| 1584 | elif test "$(Verb)" != '@' ; then \ |
| 1585 | $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \ |
| 1586 | fi; \ |
| 1587 | done |
| 1588 | $(Verb) for subdir in $(DistSubDirs) ; do \ |
| 1589 | if test "$$subdir" \!= "." ; then \ |
| 1590 | new_distdir="$(DistDir)/$$subdir" ; \ |
| 1591 | test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \ |
| 1592 | ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \ |
| 1593 | DistDir="$$new_distdir" distdir ) || exit 1; \ |
| 1594 | fi; \ |
| 1595 | done |
| 1596 | $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \ |
| 1597 | $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \ |
| 1598 | $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \ |
| 1599 | -name .svn \) -print` ;\ |
| 1600 | $(MAKE) dist-hook ; \ |
| 1601 | $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \ |
| 1602 | -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \ |
| 1603 | -o ! -type d ! -perm -400 -exec chmod a+r {} \; \ |
| 1604 | -o ! -type d ! -perm -444 -exec \ |
| 1605 | $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \ |
| 1606 | || chmod -R a+r $(DistDir) ; \ |
| 1607 | fi |
| 1608 | |
| 1609 | # This is invoked by distdir target, define it as a no-op to avoid errors if not |
| 1610 | # defined by user. |
| 1611 | dist-hook:: |
| 1612 | |
| 1613 | endif |
| 1614 | |
| 1615 | ############################################################################### |
| 1616 | # TOP LEVEL - targets only to apply at the top level directory |
| 1617 | ############################################################################### |
| 1618 | |
| 1619 | ifeq ($(LEVEL),.) |
| 1620 | |
| 1621 | #------------------------------------------------------------------------ |
| 1622 | # Install support for the project's include files: |
| 1623 | #------------------------------------------------------------------------ |
| 1624 | ifdef NO_INSTALL |
| 1625 | install-local:: |
| 1626 | $(Echo) Install circumvented with NO_INSTALL |
| 1627 | uninstall-local:: |
| 1628 | $(Echo) Uninstall circumvented with NO_INSTALL |
| 1629 | else |
| 1630 | install-local:: |
| 1631 | $(Echo) Installing include files |
| 1632 | $(Verb) $(MKDIR) $(PROJ_includedir) |
| 1633 | $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \ |
| 1634 | cd $(PROJ_SRC_ROOT)/include && \ |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame^] | 1635 | for hdr in `find . -type f '!' '(' -name '*~' \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1636 | -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \ |
| 1637 | grep -v .svn` ; do \ |
| 1638 | instdir=`dirname "$(PROJ_includedir)/$$hdr"` ; \ |
| 1639 | if test \! -d "$$instdir" ; then \ |
| 1640 | $(EchoCmd) Making install directory $$instdir ; \ |
| 1641 | $(MKDIR) $$instdir ;\ |
| 1642 | fi ; \ |
| 1643 | $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \ |
| 1644 | done ; \ |
| 1645 | fi |
| 1646 | ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT)) |
| 1647 | $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \ |
| 1648 | cd $(PROJ_OBJ_ROOT)/include && \ |
| 1649 | for hdr in `find . -type f -print | grep -v CVS` ; do \ |
| 1650 | $(DataInstall) $$hdr $(PROJ_includedir)/$$hdr ; \ |
| 1651 | done ; \ |
| 1652 | fi |
| 1653 | endif |
| 1654 | |
| 1655 | uninstall-local:: |
| 1656 | $(Echo) Uninstalling include files |
| 1657 | $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \ |
| 1658 | cd $(PROJ_SRC_ROOT)/include && \ |
| 1659 | $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \ |
Chris Lattner | bfaed4c | 2009-01-02 07:16:45 +0000 | [diff] [blame^] | 1660 | '!' '(' -name '*~' -o -name '.#*' \ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1661 | -o -name '*.in' ')' -print ')' | \ |
| 1662 | grep -v CVS | sed 's#^#$(PROJ_includedir)/#'` ; \ |
| 1663 | cd $(PROJ_SRC_ROOT)/include && \ |
| 1664 | $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \ |
| 1665 | -print ')' | sed 's#\.in$$##;s#^#$(PROJ_includedir)/#'` ; \ |
| 1666 | fi |
| 1667 | endif |
| 1668 | endif |
| 1669 | |
| 1670 | check-line-length: |
Gabor Greif | b91ea9d | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 1671 | @echo searching for overlength lines in files: $(Sources) |
| 1672 | @echo |
| 1673 | @echo |
Gabor Greif | 3033d03 | 2008-08-28 22:32:39 +0000 | [diff] [blame] | 1674 | egrep -n '.{81}' $(Sources) /dev/null |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1675 | |
| 1676 | check-for-tabs: |
Gabor Greif | b91ea9d | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 1677 | @echo searching for tabs in files: $(Sources) |
| 1678 | @echo |
| 1679 | @echo |
Gabor Greif | 3033d03 | 2008-08-28 22:32:39 +0000 | [diff] [blame] | 1680 | egrep -n ' ' $(Sources) /dev/null |
Gabor Greif | b91ea9d | 2008-05-15 10:04:30 +0000 | [diff] [blame] | 1681 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1682 | check-footprint: |
| 1683 | @ls -l $(LibDir) | awk '\ |
| 1684 | BEGIN { sum = 0; } \ |
| 1685 | { sum += $$5; } \ |
| 1686 | END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }' |
| 1687 | @ls -l $(ToolDir) | awk '\ |
| 1688 | BEGIN { sum = 0; } \ |
| 1689 | { sum += $$5; } \ |
| 1690 | END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }' |
| 1691 | #------------------------------------------------------------------------ |
| 1692 | # Print out the directories used for building |
| 1693 | #------------------------------------------------------------------------ |
| 1694 | printvars:: |
| 1695 | $(Echo) "BuildMode : " '$(BuildMode)' |
| 1696 | $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)' |
| 1697 | $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)' |
| 1698 | $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)' |
| 1699 | $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)' |
| 1700 | $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)' |
| 1701 | $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)' |
| 1702 | $(Echo) "PROJ_prefix : " '$(PROJ_prefix)' |
| 1703 | $(Echo) "PROJ_bindir : " '$(PROJ_bindir)' |
| 1704 | $(Echo) "PROJ_libdir : " '$(PROJ_libdir)' |
| 1705 | $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)' |
| 1706 | $(Echo) "PROJ_includedir : " '$(PROJ_includedir)' |
| 1707 | $(Echo) "UserTargets : " '$(UserTargets)' |
| 1708 | $(Echo) "ObjMakefiles : " '$(ObjMakefiles)' |
| 1709 | $(Echo) "SrcMakefiles : " '$(SrcMakefiles)' |
| 1710 | $(Echo) "ObjDir : " '$(ObjDir)' |
| 1711 | $(Echo) "LibDir : " '$(LibDir)' |
| 1712 | $(Echo) "ToolDir : " '$(ToolDir)' |
| 1713 | $(Echo) "ExmplDir : " '$(ExmplDir)' |
| 1714 | $(Echo) "Sources : " '$(Sources)' |
| 1715 | $(Echo) "TDFiles : " '$(TDFiles)' |
| 1716 | $(Echo) "INCFiles : " '$(INCFiles)' |
| 1717 | $(Echo) "INCTMPFiles : " '$(INCTMPFiles)' |
| 1718 | $(Echo) "PreConditions: " '$(PreConditions)' |
| 1719 | $(Echo) "Compile.CXX : " '$(Compile.CXX)' |
| 1720 | $(Echo) "Compile.C : " '$(Compile.C)' |
| 1721 | $(Echo) "Archive : " '$(Archive)' |
| 1722 | $(Echo) "YaccFiles : " '$(YaccFiles)' |
| 1723 | $(Echo) "LexFiles : " '$(LexFiles)' |
| 1724 | $(Echo) "Module : " '$(Module)' |
| 1725 | $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)' |
| 1726 | $(Echo) "SubDirs : " '$(SubDirs)' |
| 1727 | $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)' |
| 1728 | $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)' |