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