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