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