Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 1 | #---------------------------------------------------------------------- |
| 2 | # Clients fill in the source files to build |
| 3 | #---------------------------------------------------------------------- |
| 4 | # C_SOURCES := main.c |
| 5 | # CXX_SOURCES := |
| 6 | # OBJC_SOURCES := |
| 7 | # OBJCXX_SOURCES := |
| 8 | # DYLIB_C_SOURCES := |
Johnny Chen | e9f9770 | 2012-01-11 01:42:58 +0000 | [diff] [blame] | 9 | # DYLIB_CXX_SOURCES := |
| 10 | # |
| 11 | # Specifying DYLIB_ONLY has the effect of building dylib only, skipping |
| 12 | # the building of the a.out executable program. For example, |
| 13 | # DYLIB_ONLY := YES |
| 14 | # |
Johnny Chen | 64a7e74 | 2012-01-17 00:58:08 +0000 | [diff] [blame] | 15 | # Also might be of interest: |
Johnny Chen | 4876b5f | 2012-01-11 01:59:55 +0000 | [diff] [blame] | 16 | # FRAMEWORK_INCLUDES (Darwin only) := |
Robert Flack | fa8aa17 | 2015-04-20 18:07:55 +0000 | [diff] [blame] | 17 | # CFLAGS_EXTRAS := |
Johnny Chen | 4876b5f | 2012-01-11 01:59:55 +0000 | [diff] [blame] | 18 | # LD_EXTRAS := |
Michael Sartain | 802b055 | 2013-07-02 18:13:13 +0000 | [diff] [blame] | 19 | # SPLIT_DEBUG_SYMBOLS := YES |
Robert Flack | fa8aa17 | 2015-04-20 18:07:55 +0000 | [diff] [blame] | 20 | # CROSS_COMPILE := |
Johnny Chen | 64a7e74 | 2012-01-17 00:58:08 +0000 | [diff] [blame] | 21 | # |
| 22 | # And test/functionalities/archives/Makefile: |
| 23 | # MAKE_DSYM := NO |
| 24 | # ARCHIVE_NAME := libfoo.a |
| 25 | # ARCHIVE_C_SOURCES := a.c b.c |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 26 | |
| 27 | # Uncomment line below for debugging shell commands |
| 28 | # SHELL = /bin/sh -x |
| 29 | |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 30 | THIS_FILE_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))/ |
| 31 | LLDB_BASE_DIR := $(THIS_FILE_DIR)../../ |
| 32 | |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 33 | |
| 34 | #---------------------------------------------------------------------- |
| 35 | # If TRIPLE is not defined try to set the ARCH, CC, CFLAGS, and more |
| 36 | # from the triple alone |
| 37 | #---------------------------------------------------------------------- |
| 38 | TRIPLE_CFLAGS := |
| 39 | ifneq "$(TRIPLE)" "" |
| 40 | triple_space = $(subst -, ,$(TRIPLE)) |
| 41 | ARCH =$(word 1, $(triple_space)) |
| 42 | TRIPLE_VENDOR =$(word 2, $(triple_space)) |
| 43 | triple_os_and_version =$(shell echo $(word 3, $(triple_space)) | sed -e 's/\(.*\)\([0-9]\.[0-9]\).*/\1 \2/') |
| 44 | TRIPLE_OS =$(word 1, $(triple_os_and_version)) |
| 45 | TRIPLE_VERSION =$(word 2, $(triple_os_and_version)) |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 46 | ifeq "$(TRIPLE_VENDOR)" "apple" |
| 47 | ifeq "$(TRIPLE_OS)" "ios" |
| 48 | ifeq "$(SDKROOT)" "" |
| 49 | # Set SDKROOT if it wasn't set |
| 50 | ifneq (,$(findstring arm,$(ARCH))) |
| 51 | SDKROOT = $(shell xcrun --sdk iphoneos --show-sdk-path) |
Greg Clayton | 5e3f20d | 2015-06-02 21:42:31 +0000 | [diff] [blame] | 52 | ifeq "$(TRIPLE_VERSION)" "" |
| 53 | TRIPLE_VERSION =$(shell echo $(notdir $(SDKROOT)) | sed -e 's/.*\([0-9]\.[0-9]\).*/\1/') |
| 54 | endif |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 55 | TRIPLE_CFLAGS :=-mios-version-min=$(TRIPLE_VERSION) -isysroot "$(SDKROOT)" |
| 56 | else |
| 57 | SDKROOT = $(shell xcrun --sdk iphonesimulator --show-sdk-path) |
Greg Clayton | 5e3f20d | 2015-06-02 21:42:31 +0000 | [diff] [blame] | 58 | ifeq "$(TRIPLE_VERSION)" "" |
| 59 | TRIPLE_VERSION =$(shell echo $(notdir $(SDKROOT)) | sed -e 's/.*\([0-9]\.[0-9]\).*/\1/') |
| 60 | endif |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 61 | TRIPLE_CFLAGS :=-mios-simulator-version-min=$(TRIPLE_VERSION) -isysroot "$(SDKROOT)" |
| 62 | endif |
| 63 | endif |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 64 | endif |
| 65 | endif |
| 66 | endif |
| 67 | |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 68 | #---------------------------------------------------------------------- |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 69 | # If OS is not defined, use 'uname -s' to determine the OS name. |
Adrian McCarthy | b4b8bb7 | 2015-04-15 23:38:23 +0000 | [diff] [blame] | 70 | # |
| 71 | # uname on Windows gives "windows32", but most environments standardize |
| 72 | # on "Windows_NT", so we'll make it consistent here. When running |
| 73 | # tests from Visual Studio, the environment variable isn't inherited |
| 74 | # all the way down to the process spawned for make. |
| 75 | #---------------------------------------------------------------------- |
Chaoren Lin | d761a95 | 2015-09-16 21:51:51 +0000 | [diff] [blame] | 76 | HOST_OS = $(shell uname -s) |
| 77 | ifeq "$(HOST_OS)" "windows32" |
| 78 | HOST_OS = Windows_NT |
Adrian McCarthy | b4b8bb7 | 2015-04-15 23:38:23 +0000 | [diff] [blame] | 79 | endif |
Chaoren Lin | d761a95 | 2015-09-16 21:51:51 +0000 | [diff] [blame] | 80 | ifeq "$(OS)" "" |
| 81 | OS = $(HOST_OS) |
Adrian McCarthy | b4b8bb7 | 2015-04-15 23:38:23 +0000 | [diff] [blame] | 82 | endif |
| 83 | |
| 84 | #---------------------------------------------------------------------- |
| 85 | # If ARCH is not defined, default to x86_64. |
Johnny Chen | 6c17c08 | 2010-09-16 20:54:06 +0000 | [diff] [blame] | 86 | #---------------------------------------------------------------------- |
| 87 | ifeq "$(ARCH)" "" |
Zachary Turner | e068d91 | 2014-12-01 23:13:41 +0000 | [diff] [blame] | 88 | ifeq "$(OS)" "Windows_NT" |
| 89 | ARCH = x86 |
| 90 | else |
Johnny Chen | 6c17c08 | 2010-09-16 20:54:06 +0000 | [diff] [blame] | 91 | ARCH = x86_64 |
| 92 | endif |
Zachary Turner | e068d91 | 2014-12-01 23:13:41 +0000 | [diff] [blame] | 93 | endif |
Johnny Chen | 6c17c08 | 2010-09-16 20:54:06 +0000 | [diff] [blame] | 94 | |
| 95 | #---------------------------------------------------------------------- |
Johnny Chen | 597cbbb | 2011-08-23 21:54:10 +0000 | [diff] [blame] | 96 | # CC defaults to clang. |
Johnny Chen | 4ab4a9b | 2011-08-24 18:12:53 +0000 | [diff] [blame] | 97 | # |
| 98 | # If you change the defaults of CC, be sure to also change it in the file |
| 99 | # test/plugins/builder_base.py, which provides a Python way to return the |
| 100 | # value of the make variable CC -- getCompiler(). |
| 101 | # |
Johnny Chen | 6055b44 | 2011-01-14 20:55:13 +0000 | [diff] [blame] | 102 | # See also these functions: |
| 103 | # o cxx_compiler |
| 104 | # o cxx_linker |
Johnny Chen | d43e208 | 2011-01-14 20:46:49 +0000 | [diff] [blame] | 105 | #---------------------------------------------------------------------- |
Johnny Chen | 597cbbb | 2011-08-23 21:54:10 +0000 | [diff] [blame] | 106 | CC ?= clang |
Johnny Chen | d43e208 | 2011-01-14 20:46:49 +0000 | [diff] [blame] | 107 | ifeq "$(CC)" "cc" |
Vince Harron | 847e261 | 2015-05-27 04:42:54 +0000 | [diff] [blame] | 108 | ifneq "$(shell which clang)" "" |
| 109 | CC = clang |
| 110 | else ifneq "$(shell which clang-3.5)" "" |
| 111 | CC = clang-3.5 |
| 112 | else ifneq "$(shell which gcc)" "" |
| 113 | CC = gcc |
| 114 | endif |
Johnny Chen | d43e208 | 2011-01-14 20:46:49 +0000 | [diff] [blame] | 115 | endif |
| 116 | |
| 117 | #---------------------------------------------------------------------- |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 118 | # ARCHFLAG is the flag used to tell the compiler which architecture |
| 119 | # to compile for. The default is the flag that clang accepts. |
| 120 | #---------------------------------------------------------------------- |
Greg Clayton | 2c93b80 | 2015-04-16 01:18:05 +0000 | [diff] [blame] | 121 | ARCHFLAG ?= -arch |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 122 | |
| 123 | #---------------------------------------------------------------------- |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 124 | # Change any build/tool options needed |
| 125 | #---------------------------------------------------------------------- |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 126 | ifeq "$(OS)" "Darwin" |
Greg Clayton | 82625d3 | 2014-07-29 20:10:59 +0000 | [diff] [blame] | 127 | DS := $(shell xcrun -find -toolchain default dsymutil) |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 128 | DSFLAGS = |
| 129 | DSYM = $(EXE).dSYM |
Robert Flack | fa8aa17 | 2015-04-20 18:07:55 +0000 | [diff] [blame] | 130 | AR := $(CROSS_COMPILE)libtool |
Johnny Chen | fe14162 | 2012-01-12 23:09:42 +0000 | [diff] [blame] | 131 | ARFLAGS := -static -o |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 132 | else |
Robert Flack | fa8aa17 | 2015-04-20 18:07:55 +0000 | [diff] [blame] | 133 | AR := $(CROSS_COMPILE)ar |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 134 | # On non-Apple platforms, -arch becomes -m |
| 135 | ARCHFLAG := -m |
| 136 | |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 137 | # i386, i686, x86 -> 32 |
Zachary Turner | 7c1bc2b | 2014-07-31 21:07:41 +0000 | [diff] [blame] | 138 | # amd64, x86_64, x64 -> 64 |
Ed Maste | 4fe0aba | 2014-02-20 18:40:01 +0000 | [diff] [blame] | 139 | ifeq "$(ARCH)" "amd64" |
Zachary Turner | 7c1bc2b | 2014-07-31 21:07:41 +0000 | [diff] [blame] | 140 | override ARCH := $(subst amd64,64,$(ARCH)) |
Ed Maste | 4fe0aba | 2014-02-20 18:40:01 +0000 | [diff] [blame] | 141 | endif |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 142 | ifeq "$(ARCH)" "x86_64" |
Zachary Turner | 7c1bc2b | 2014-07-31 21:07:41 +0000 | [diff] [blame] | 143 | override ARCH := $(subst x86_64,64,$(ARCH)) |
| 144 | endif |
| 145 | ifeq "$(ARCH)" "x64" |
| 146 | override ARCH := $(subst x64,64,$(ARCH)) |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 147 | endif |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 148 | ifeq "$(ARCH)" "x86" |
| 149 | override ARCH := $(subst x86,32,$(ARCH)) |
| 150 | endif |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 151 | ifeq "$(ARCH)" "i386" |
Zachary Turner | 7c1bc2b | 2014-07-31 21:07:41 +0000 | [diff] [blame] | 152 | override ARCH := $(subst i386,32,$(ARCH)) |
| 153 | endif |
| 154 | ifeq "$(ARCH)" "i686" |
| 155 | override ARCH := $(subst i686,32,$(ARCH)) |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 156 | endif |
Justin Hibbits | 3cba1c2 | 2014-11-12 15:13:58 +0000 | [diff] [blame] | 157 | ifeq "$(ARCH)" "powerpc" |
| 158 | override ARCH := $(subst powerpc,32,$(ARCH)) |
| 159 | endif |
| 160 | ifeq "$(ARCH)" "powerpc64" |
| 161 | override ARCH := $(subst powerpc64,64,$(ARCH)) |
| 162 | endif |
Tamas Berghammer | 1e209fc | 2015-03-13 11:36:47 +0000 | [diff] [blame] | 163 | ifeq "$(ARCH)" "aarch64" |
| 164 | override ARCH := |
| 165 | override ARCHFLAG := |
| 166 | endif |
Michael Sartain | 802b055 | 2013-07-02 18:13:13 +0000 | [diff] [blame] | 167 | |
| 168 | ifeq "$(SPLIT_DEBUG_SYMBOLS)" "YES" |
| 169 | DSYM = $(EXE).debug |
| 170 | endif |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 171 | endif |
| 172 | |
Ilia K | feda0b7 | 2015-05-12 12:13:12 +0000 | [diff] [blame] | 173 | CFLAGS ?= -g -O0 -fno-builtin |
Greg Clayton | 2c93b80 | 2015-04-16 01:18:05 +0000 | [diff] [blame] | 174 | ifeq "$(OS)" "Darwin" |
| 175 | CFLAGS += $(ARCHFLAG) $(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) -I$(LLDB_BASE_DIR)include |
| 176 | else |
| 177 | CFLAGS += $(ARCHFLAG)$(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) -I$(LLDB_BASE_DIR)include |
| 178 | endif |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 179 | CFLAGS += -include $(THIS_FILE_DIR)test_common.h $(TRIPLE_CFLAGS) |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 180 | |
Jim Ingham | 4b4b247 | 2014-03-13 02:47:14 +0000 | [diff] [blame] | 181 | # Use this one if you want to build one part of the result without debug information: |
Greg Clayton | 2c93b80 | 2015-04-16 01:18:05 +0000 | [diff] [blame] | 182 | ifeq "$(OS)" "Darwin" |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 183 | CFLAGS_NO_DEBUG = -O0 $(ARCHFLAG) $(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) $(TRIPLE_CFLAGS) |
Greg Clayton | 2c93b80 | 2015-04-16 01:18:05 +0000 | [diff] [blame] | 184 | else |
Greg Clayton | 315b88d | 2015-06-02 21:38:10 +0000 | [diff] [blame] | 185 | CFLAGS_NO_DEBUG = -O0 $(ARCHFLAG)$(ARCH) $(FRAMEWORK_INCLUDES) $(CFLAGS_EXTRAS) $(TRIPLE_CFLAGS) |
Greg Clayton | 2c93b80 | 2015-04-16 01:18:05 +0000 | [diff] [blame] | 186 | endif |
Jim Ingham | 4b4b247 | 2014-03-13 02:47:14 +0000 | [diff] [blame] | 187 | |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 188 | CXXFLAGS += -std=c++11 |
| 189 | CXXFLAGS += $(CFLAGS) |
Johnny Chen | 53e2edb | 2011-08-09 20:07:16 +0000 | [diff] [blame] | 190 | LD = $(CC) |
| 191 | LDFLAGS ?= $(CFLAGS) |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 192 | LDFLAGS += $(LD_EXTRAS) |
Tamas Berghammer | 37099e8 | 2015-02-25 13:02:08 +0000 | [diff] [blame] | 193 | ifeq (,$(filter $(OS), Windows_NT Android)) |
Chaoren Lin | f4a92bd | 2015-04-13 18:21:31 +0000 | [diff] [blame] | 194 | ifneq (,$(filter YES,$(ENABLE_THREADS) $(ENABLE_STD_THREADS))) |
Chaoren Lin | 36758cf | 2015-05-21 00:19:15 +0000 | [diff] [blame] | 195 | LDFLAGS += -pthread |
Chaoren Lin | f4a92bd | 2015-04-13 18:21:31 +0000 | [diff] [blame] | 196 | endif |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 197 | endif |
Johnny Chen | 53e2edb | 2011-08-09 20:07:16 +0000 | [diff] [blame] | 198 | OBJECTS = |
| 199 | EXE ?= a.out |
| 200 | |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 201 | ifneq "$(DYLIB_NAME)" "" |
| 202 | ifeq "$(OS)" "Darwin" |
| 203 | DYLIB_FILENAME = lib$(DYLIB_NAME).dylib |
Chaoren Lin | 2944915 | 2015-07-21 17:50:16 +0000 | [diff] [blame] | 204 | DYLIB_EXECUTABLE_PATH ?= @executable_path |
Chaoren Lin | f4a92bd | 2015-04-13 18:21:31 +0000 | [diff] [blame] | 205 | else ifeq "$(OS)" "Windows_NT" |
| 206 | DYLIB_FILENAME = $(DYLIB_NAME).dll |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 207 | else |
| 208 | DYLIB_FILENAME = lib$(DYLIB_NAME).so |
| 209 | endif |
| 210 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 211 | |
Johnny Chen | bdb4efc | 2011-01-14 18:19:53 +0000 | [diff] [blame] | 212 | # Function that returns the counterpart C++ compiler, given $(CC) as arg. |
Shawn Best | 1ecb68d | 2014-11-11 17:34:58 +0000 | [diff] [blame] | 213 | cxx_compiler_notdir = $(if $(findstring clang,$(1)), \ |
| 214 | $(subst clang,clang++,$(1)), \ |
| 215 | $(if $(findstring icc,$(1)), \ |
| 216 | $(subst icc,icpc,$(1)), \ |
| 217 | $(if $(findstring llvm-gcc,$(1)), \ |
| 218 | $(subst llvm-gcc,llvm-g++,$(1)), \ |
| 219 | $(if $(findstring gcc,$(1)), \ |
| 220 | $(subst gcc,g++,$(1)), \ |
| 221 | $(subst cc,c++,$(1)))))) |
Greg Clayton | b39751b | 2013-11-22 21:05:25 +0000 | [diff] [blame] | 222 | cxx_compiler = $(if $(findstring /,$(1)),$(join $(dir $(1)), $(call cxx_compiler_notdir,$(notdir $(1)))),$(call cxx_compiler_notdir,$(1))) |
Johnny Chen | bdb4efc | 2011-01-14 18:19:53 +0000 | [diff] [blame] | 223 | |
| 224 | # Function that returns the C++ linker, given $(CC) as arg. |
Shawn Best | 1ecb68d | 2014-11-11 17:34:58 +0000 | [diff] [blame] | 225 | cxx_linker_notdir = $(if $(findstring clang,$(1)), \ |
| 226 | $(subst clang,clang++,$(1)), \ |
| 227 | $(if $(findstring icc,$(1)), \ |
| 228 | $(subst icc,icpc,$(1)), \ |
| 229 | $(if $(findstring llvm-gcc,$(1)), \ |
| 230 | $(subst llvm-gcc,llvm-g++,$(1)), \ |
| 231 | $(if $(findstring gcc,$(1)), \ |
| 232 | $(subst gcc,g++,$(1)), \ |
| 233 | $(subst cc,c++,$(1)))))) |
Greg Clayton | b39751b | 2013-11-22 21:05:25 +0000 | [diff] [blame] | 234 | cxx_linker = $(if $(findstring /,$(1)),$(join $(dir $(1)), $(call cxx_linker_notdir,$(notdir $(1)))),$(call cxx_linker_notdir,$(1))) |
Johnny Chen | 832d233 | 2010-09-30 01:22:34 +0000 | [diff] [blame] | 235 | |
Robert Flack | fa8aa17 | 2015-04-20 18:07:55 +0000 | [diff] [blame] | 236 | OBJCOPY := $(CROSS_COMPILE)objcopy |
Tamas Berghammer | dcc8e59 | 2015-04-02 11:09:28 +0000 | [diff] [blame] | 237 | |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 238 | #---------------------------------------------------------------------- |
Zachary Turner | e068d91 | 2014-12-01 23:13:41 +0000 | [diff] [blame] | 239 | # Windows specific options |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 240 | #---------------------------------------------------------------------- |
| 241 | ifeq "$(OS)" "Windows_NT" |
| 242 | ifneq (,$(findstring clang,$(CC))) |
Zachary Turner | e068d91 | 2014-12-01 23:13:41 +0000 | [diff] [blame] | 243 | # Clang for Windows doesn't support C++ Exceptions |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 244 | CXXFLAGS += -fno-exceptions |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 245 | CXXFLAGS += -D_HAS_EXCEPTIONS=0 |
Zachary Turner | e068d91 | 2014-12-01 23:13:41 +0000 | [diff] [blame] | 246 | # The MSVC linker doesn't understand long section names |
| 247 | # generated by the clang compiler. |
| 248 | LDFLAGS += -fuse-ld=lld |
Zachary Turner | c782652 | 2014-08-13 17:44:53 +0000 | [diff] [blame] | 249 | endif |
| 250 | endif |
| 251 | |
| 252 | #---------------------------------------------------------------------- |
Tamas Berghammer | 37099e8 | 2015-02-25 13:02:08 +0000 | [diff] [blame] | 253 | # Android specific options |
| 254 | #---------------------------------------------------------------------- |
| 255 | ifeq "$(OS)" "Android" |
Chaoren Lin | 9070f53 | 2015-07-17 22:13:29 +0000 | [diff] [blame] | 256 | ifdef PIE |
| 257 | LDFLAGS += -pie |
| 258 | endif |
Chaoren Lin | 7d76a13 | 2015-06-02 16:43:19 +0000 | [diff] [blame] | 259 | replace_with = $(if $(findstring clang,$(1)), \ |
| 260 | $(subst clang,$(2),$(1)), \ |
| 261 | $(if $(findstring gcc,$(1)), \ |
| 262 | $(subst gcc,$(2),$(1)), \ |
| 263 | $(subst cc,$(2),$(1)))) |
| 264 | ifeq "$(notdir $(CC))" "$(CC)" |
| 265 | replace_cc_with = $(call replace_with,$(CC),$(1)) |
| 266 | else |
| 267 | replace_cc_with = $(join $(dir $(CC)),$(call replace_with,$(notdir $(CC)),$(1))) |
| 268 | endif |
| 269 | OBJCOPY = $(call replace_cc_with,objcopy) |
| 270 | AR = $(call replace_cc_with,ar) |
Tamas Berghammer | 37099e8 | 2015-02-25 13:02:08 +0000 | [diff] [blame] | 271 | endif |
| 272 | |
| 273 | #---------------------------------------------------------------------- |
Daniel Malea | c7ffa7a | 2013-06-05 19:32:34 +0000 | [diff] [blame] | 274 | # C++ standard library options |
| 275 | #---------------------------------------------------------------------- |
| 276 | ifeq (1,$(USE_LIBSTDCPP)) |
| 277 | # Clang requires an extra flag: -stdlib=libstdc++ |
| 278 | ifneq (,$(findstring clang,$(CC))) |
Enrico Granata | a1acb49 | 2013-06-07 01:58:52 +0000 | [diff] [blame] | 279 | CXXFLAGS += -stdlib=libstdc++ |
Daniel Malea | c7ffa7a | 2013-06-05 19:32:34 +0000 | [diff] [blame] | 280 | LDFLAGS += -stdlib=libstdc++ |
| 281 | endif |
| 282 | endif |
| 283 | |
Greg Clayton | 1767a73 | 2013-06-13 21:27:14 +0000 | [diff] [blame] | 284 | ifeq (1,$(USE_LIBCPP)) |
| 285 | # Clang requires an extra flag: -stdlib=libstdc++ |
| 286 | ifneq (,$(findstring clang,$(CC))) |
Vince Harron | f2e3760 | 2015-05-04 02:56:32 +0000 | [diff] [blame] | 287 | ifeq "$(OS)" "Linux" |
| 288 | # This is the default install location on Ubuntu 14.04 |
Enrico Granata | f6fe302 | 2015-09-18 22:26:34 +0000 | [diff] [blame^] | 289 | ifneq ($(wildcard /usr/include/c++/v1/.),) |
| 290 | CXXFLAGS += -stdlib=libc++ |
| 291 | LDFLAGS += -stdlib=libc++ |
| 292 | CXXFLAGS += -I/usr/include/c++/v1 |
| 293 | endif |
| 294 | else |
| 295 | CXXFLAGS += -stdlib=libc++ |
| 296 | LDFLAGS += -stdlib=libc++ |
| 297 | endif |
Greg Clayton | 1767a73 | 2013-06-13 21:27:14 +0000 | [diff] [blame] | 298 | endif |
| 299 | endif |
| 300 | |
Daniel Malea | c7ffa7a | 2013-06-05 19:32:34 +0000 | [diff] [blame] | 301 | #---------------------------------------------------------------------- |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 302 | # dylib settings |
| 303 | #---------------------------------------------------------------------- |
| 304 | ifneq "$(strip $(DYLIB_C_SOURCES))" "" |
| 305 | DYLIB_OBJECTS +=$(strip $(DYLIB_C_SOURCES:.c=.o)) |
| 306 | endif |
| 307 | |
Sean Callanan | 7277284 | 2012-02-22 23:57:45 +0000 | [diff] [blame] | 308 | ifneq "$(strip $(DYLIB_OBJC_SOURCES))" "" |
| 309 | DYLIB_OBJECTS +=$(strip $(DYLIB_OBJC_SOURCES:.m=.o)) |
| 310 | endif |
| 311 | |
Greg Clayton | d50d238 | 2012-01-10 00:00:15 +0000 | [diff] [blame] | 312 | ifneq "$(strip $(DYLIB_CXX_SOURCES))" "" |
| 313 | DYLIB_OBJECTS +=$(strip $(DYLIB_CXX_SOURCES:.cpp=.o)) |
| 314 | CXX = $(call cxx_compiler,$(CC)) |
| 315 | LD = $(call cxx_linker,$(CC)) |
| 316 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 317 | |
| 318 | #---------------------------------------------------------------------- |
| 319 | # Check if we have any C source files |
| 320 | #---------------------------------------------------------------------- |
| 321 | ifneq "$(strip $(C_SOURCES))" "" |
| 322 | OBJECTS +=$(strip $(C_SOURCES:.c=.o)) |
| 323 | endif |
| 324 | |
| 325 | #---------------------------------------------------------------------- |
| 326 | # Check if we have any C++ source files |
| 327 | #---------------------------------------------------------------------- |
| 328 | ifneq "$(strip $(CXX_SOURCES))" "" |
| 329 | OBJECTS +=$(strip $(CXX_SOURCES:.cpp=.o)) |
Johnny Chen | 832d233 | 2010-09-30 01:22:34 +0000 | [diff] [blame] | 330 | CXX = $(call cxx_compiler,$(CC)) |
Johnny Chen | bdb4efc | 2011-01-14 18:19:53 +0000 | [diff] [blame] | 331 | LD = $(call cxx_linker,$(CC)) |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 332 | endif |
| 333 | |
| 334 | #---------------------------------------------------------------------- |
| 335 | # Check if we have any ObjC source files |
| 336 | #---------------------------------------------------------------------- |
| 337 | ifneq "$(strip $(OBJC_SOURCES))" "" |
| 338 | OBJECTS +=$(strip $(OBJC_SOURCES:.m=.o)) |
| 339 | LDFLAGS +=-lobjc |
| 340 | endif |
| 341 | |
| 342 | #---------------------------------------------------------------------- |
| 343 | # Check if we have any ObjC++ source files |
| 344 | #---------------------------------------------------------------------- |
| 345 | ifneq "$(strip $(OBJCXX_SOURCES))" "" |
| 346 | OBJECTS +=$(strip $(OBJCXX_SOURCES:.mm=.o)) |
Johnny Chen | 832d233 | 2010-09-30 01:22:34 +0000 | [diff] [blame] | 347 | CXX = $(call cxx_compiler,$(CC)) |
Johnny Chen | bdb4efc | 2011-01-14 18:19:53 +0000 | [diff] [blame] | 348 | LD = $(call cxx_linker,$(CC)) |
Johnny Chen | 8da4ddf | 2012-04-24 23:05:07 +0000 | [diff] [blame] | 349 | ifeq "$(findstring lobjc,$(LDFLAGS))" "" |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 350 | LDFLAGS +=-lobjc |
| 351 | endif |
| 352 | endif |
| 353 | |
Johnny Chen | fe14162 | 2012-01-12 23:09:42 +0000 | [diff] [blame] | 354 | #---------------------------------------------------------------------- |
| 355 | # Check if we have any C source files for archive |
| 356 | #---------------------------------------------------------------------- |
| 357 | ifneq "$(strip $(ARCHIVE_C_SOURCES))" "" |
| 358 | ARCHIVE_OBJECTS +=$(strip $(ARCHIVE_C_SOURCES:.c=.o)) |
| 359 | endif |
| 360 | |
| 361 | #---------------------------------------------------------------------- |
| 362 | # Check if we have any C++ source files for archive |
| 363 | #---------------------------------------------------------------------- |
| 364 | ifneq "$(strip $(ARCHIVE_CXX_SOURCES))" "" |
| 365 | ARCHIVE_OBJECTS +=$(strip $(ARCHIVE_CXX_SOURCES:.cpp=.o)) |
| 366 | CXX = $(call cxx_compiler,$(CC)) |
| 367 | LD = $(call cxx_linker,$(CC)) |
| 368 | endif |
| 369 | |
| 370 | #---------------------------------------------------------------------- |
| 371 | # Check if we have any ObjC source files for archive |
| 372 | #---------------------------------------------------------------------- |
| 373 | ifneq "$(strip $(ARCHIVE_OBJC_SOURCES))" "" |
| 374 | ARCHIVE_OBJECTS +=$(strip $(ARCHIVE_OBJC_SOURCES:.m=.o)) |
| 375 | LDFLAGS +=-lobjc |
| 376 | endif |
| 377 | |
| 378 | #---------------------------------------------------------------------- |
| 379 | # Check if we have any ObjC++ source files for archive |
| 380 | #---------------------------------------------------------------------- |
| 381 | ifneq "$(strip $(ARCHIVE_OBJCXX_SOURCES))" "" |
| 382 | ARCHIVE_OBJECTS +=$(strip $(ARCHIVE_OBJCXX_SOURCES:.mm=.o)) |
| 383 | CXX = $(call cxx_compiler,$(CC)) |
| 384 | LD = $(call cxx_linker,$(CC)) |
Johnny Chen | 8da4ddf | 2012-04-24 23:05:07 +0000 | [diff] [blame] | 385 | ifeq "$(findstring lobjc,$(LDFLAGS))" "" |
Johnny Chen | fe14162 | 2012-01-12 23:09:42 +0000 | [diff] [blame] | 386 | LDFLAGS +=-lobjc |
| 387 | endif |
| 388 | endif |
| 389 | |
Matt Kopec | f2430f5 | 2013-07-24 21:39:24 +0000 | [diff] [blame] | 390 | #---------------------------------------------------------------------- |
| 391 | # Check if we are compiling with gcc 4.6 |
| 392 | #---------------------------------------------------------------------- |
Ed Maste | 375432e | 2015-05-29 19:52:02 +0000 | [diff] [blame] | 393 | ifneq "$(strip $(CXX_SOURCES) $(OBJCXX_SOURCES))" "" |
| 394 | ifneq "$(filter g++,$(CXX))" "" |
| 395 | CXXVERSION = $(shell $(CXX) -dumpversion | cut -b 1-3) |
Matt Kopec | f2430f5 | 2013-07-24 21:39:24 +0000 | [diff] [blame] | 396 | ifeq "$(CXXVERSION)" "4.6" |
| 397 | # GCC 4.6 cannot handle -std=c++11, so replace it with -std=c++0x |
| 398 | # instead. FIXME: remove once GCC version is upgraded. |
| 399 | override CXXFLAGS := $(subst -std=c++11,-std=c++0x,$(CXXFLAGS)) |
| 400 | endif |
| 401 | endif |
Ed Maste | 375432e | 2015-05-29 19:52:02 +0000 | [diff] [blame] | 402 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 403 | |
| 404 | #---------------------------------------------------------------------- |
Johnny Chen | beac8f9 | 2012-01-10 00:41:11 +0000 | [diff] [blame] | 405 | # DYLIB_ONLY variable can be used to skip the building of a.out. |
| 406 | # See the sections below regarding dSYM file as well as the building of |
| 407 | # EXE from all the objects. |
| 408 | #---------------------------------------------------------------------- |
| 409 | |
| 410 | #---------------------------------------------------------------------- |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 411 | # Make the dSYM file from the executable if $(MAKE_DSYM) != "NO" |
| 412 | #---------------------------------------------------------------------- |
Matt Kopec | 7663b3a | 2013-09-25 17:44:00 +0000 | [diff] [blame] | 413 | ifneq "$(DYLIB_ONLY)" "YES" |
Michael Sartain | 802b055 | 2013-07-02 18:13:13 +0000 | [diff] [blame] | 414 | $(DSYM) : $(EXE) |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 415 | ifeq "$(OS)" "Darwin" |
Johnny Chen | 9101639 | 2011-06-20 20:08:26 +0000 | [diff] [blame] | 416 | ifneq "$(MAKE_DSYM)" "NO" |
Enrico Granata | 489af08 | 2014-11-18 22:47:33 +0000 | [diff] [blame] | 417 | "$(DS)" $(DSFLAGS) -o "$(DSYM)" "$(EXE)" |
Johnny Chen | 9101639 | 2011-06-20 20:08:26 +0000 | [diff] [blame] | 418 | endif |
Michael Sartain | 802b055 | 2013-07-02 18:13:13 +0000 | [diff] [blame] | 419 | else |
| 420 | ifeq "$(SPLIT_DEBUG_SYMBOLS)" "YES" |
Tamas Berghammer | dcc8e59 | 2015-04-02 11:09:28 +0000 | [diff] [blame] | 421 | $(OBJCOPY) --only-keep-debug "$(EXE)" "$(DSYM)" |
| 422 | $(OBJCOPY) --strip-debug --add-gnu-debuglink="$(DSYM)" "$(EXE)" "$(EXE)" |
Michael Sartain | 802b055 | 2013-07-02 18:13:13 +0000 | [diff] [blame] | 423 | endif |
| 424 | endif |
Johnny Chen | beac8f9 | 2012-01-10 00:41:11 +0000 | [diff] [blame] | 425 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 426 | |
| 427 | #---------------------------------------------------------------------- |
| 428 | # Compile the executable from all the objects. |
| 429 | #---------------------------------------------------------------------- |
Johnny Chen | beac8f9 | 2012-01-10 00:41:11 +0000 | [diff] [blame] | 430 | ifneq "$(DYLIB_NAME)" "" |
| 431 | ifeq "$(DYLIB_ONLY)" "" |
Johnny Chen | fe14162 | 2012-01-12 23:09:42 +0000 | [diff] [blame] | 432 | $(EXE) : $(OBJECTS) $(ARCHIVE_NAME) $(DYLIB_FILENAME) |
Richard Mitton | ec8b282 | 2013-10-17 20:09:33 +0000 | [diff] [blame] | 433 | $(LD) $(OBJECTS) $(ARCHIVE_NAME) -L. -l$(DYLIB_NAME) $(LDFLAGS) -o "$(EXE)" |
Johnny Chen | beac8f9 | 2012-01-10 00:41:11 +0000 | [diff] [blame] | 434 | else |
| 435 | EXE = $(DYLIB_FILENAME) |
| 436 | endif |
| 437 | else |
Johnny Chen | fe14162 | 2012-01-12 23:09:42 +0000 | [diff] [blame] | 438 | $(EXE) : $(OBJECTS) $(ARCHIVE_NAME) |
Daniel Malea | 2745d84 | 2013-01-25 00:31:48 +0000 | [diff] [blame] | 439 | $(LD) $(OBJECTS) $(LDFLAGS) $(ARCHIVE_NAME) -o "$(EXE)" |
Johnny Chen | fe14162 | 2012-01-12 23:09:42 +0000 | [diff] [blame] | 440 | endif |
| 441 | |
| 442 | #---------------------------------------------------------------------- |
| 443 | # Make the archive |
| 444 | #---------------------------------------------------------------------- |
| 445 | ifneq "$(ARCHIVE_NAME)" "" |
| 446 | ifeq "$(OS)" "Darwin" |
| 447 | $(ARCHIVE_NAME) : $(ARCHIVE_OBJECTS) |
| 448 | $(AR) $(ARFLAGS) $(ARCHIVE_NAME) $(ARCHIVE_OBJECTS) |
| 449 | $(RM) $(ARCHIVE_OBJECTS) |
| 450 | else |
| 451 | $(ARCHIVE_NAME) : $(foreach ar_obj,$(ARCHIVE_OBJECTS),$(ARCHIVE_NAME)($(ar_obj))) |
| 452 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 453 | endif |
| 454 | |
| 455 | #---------------------------------------------------------------------- |
| 456 | # Make the dylib |
| 457 | #---------------------------------------------------------------------- |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 458 | $(DYLIB_OBJECTS) : CFLAGS += -DCOMPILING_LLDB_TEST_DLL |
| 459 | |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 460 | $(DYLIB_FILENAME) : $(DYLIB_OBJECTS) |
| 461 | ifeq "$(OS)" "Darwin" |
Chaoren Lin | 2944915 | 2015-07-21 17:50:16 +0000 | [diff] [blame] | 462 | $(LD) $(DYLIB_OBJECTS) $(LDFLAGS) -install_name "$(DYLIB_EXECUTABLE_PATH)/$(DYLIB_FILENAME)" -dynamiclib -o "$(DYLIB_FILENAME)" |
Greg Clayton | 0c9773c | 2012-09-20 21:43:11 +0000 | [diff] [blame] | 463 | ifneq "$(MAKE_DSYM)" "NO" |
| 464 | ifneq "$(DS)" "" |
Kate Stone | 2136ace | 2015-01-21 19:30:00 +0000 | [diff] [blame] | 465 | "$(DS)" $(DSFLAGS) "$(DYLIB_FILENAME)" |
Greg Clayton | 0c9773c | 2012-09-20 21:43:11 +0000 | [diff] [blame] | 466 | endif |
| 467 | endif |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 468 | else |
Chaoren Lin | 54fff4c | 2015-04-16 22:03:43 +0000 | [diff] [blame] | 469 | $(LD) $(DYLIB_OBJECTS) $(LDFLAGS) -shared -o "$(DYLIB_FILENAME)" |
Michael Sartain | 802b055 | 2013-07-02 18:13:13 +0000 | [diff] [blame] | 470 | ifeq "$(SPLIT_DEBUG_SYMBOLS)" "YES" |
Tamas Berghammer | dcc8e59 | 2015-04-02 11:09:28 +0000 | [diff] [blame] | 471 | $(OBJCOPY) --only-keep-debug "$(DYLIB_FILENAME)" "$(DYLIB_FILENAME).debug" |
| 472 | $(OBJCOPY) --strip-debug --add-gnu-debuglink="$(DYLIB_FILENAME).debug" "$(DYLIB_FILENAME)" "$(DYLIB_FILENAME)" |
Michael Sartain | 802b055 | 2013-07-02 18:13:13 +0000 | [diff] [blame] | 473 | endif |
Peter Collingbourne | 518f03d | 2011-06-20 19:06:04 +0000 | [diff] [blame] | 474 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 475 | |
| 476 | #---------------------------------------------------------------------- |
| 477 | # Automatic variables based on items already entered. Below we create |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 478 | # an object's lists from the list of sources by replacing all entries |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 479 | # that end with .c with .o, and we also create a list of prerequisite |
| 480 | # files by replacing all .c files with .d. |
| 481 | #---------------------------------------------------------------------- |
| 482 | PREREQS := $(OBJECTS:.o=.d) |
Tamas Berghammer | 1535beb | 2015-09-09 10:20:30 +0000 | [diff] [blame] | 483 | DWOS := $(OBJECTS:.o=.dwo) |
Johnny Chen | e3dc0f0 | 2010-08-24 16:35:00 +0000 | [diff] [blame] | 484 | ifneq "$(DYLIB_NAME)" "" |
| 485 | DYLIB_PREREQS := $(DYLIB_OBJECTS:.o=.d) |
Tamas Berghammer | 1535beb | 2015-09-09 10:20:30 +0000 | [diff] [blame] | 486 | DYLIB_DWOS := $(DYLIB_OBJECTS:.o=.dwo) |
Johnny Chen | e3dc0f0 | 2010-08-24 16:35:00 +0000 | [diff] [blame] | 487 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 488 | |
| 489 | #---------------------------------------------------------------------- |
| 490 | # Rule for Generating Prerequisites Automatically using .d files and |
| 491 | # the compiler -MM option. The -M option will list all system headers, |
| 492 | # and the -MM option will list all non-system dependencies. |
| 493 | #---------------------------------------------------------------------- |
Chaoren Lin | d761a95 | 2015-09-16 21:51:51 +0000 | [diff] [blame] | 494 | ifeq "$(HOST_OS)" "Windows_NT" |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 495 | JOIN_CMD = & |
| 496 | QUOTE = " |
| 497 | else |
| 498 | JOIN_CMD = ; |
| 499 | QUOTE = ' |
| 500 | endif |
| 501 | |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 502 | %.d: %.c |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 503 | @rm -f $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 504 | $(CC) -M $(CFLAGS) $< > $@.tmp && \ |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 505 | sed $(QUOTE)s,\($*\)\.o[ :]*,\1.o $@ : ,g$(QUOTE) < $@.tmp > $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 506 | rm -f $@.tmp |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 507 | |
| 508 | %.d: %.cpp |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 509 | @rm -f $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 510 | $(CXX) -M $(CXXFLAGS) $< > $@.tmp && \ |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 511 | sed $(QUOTE)s,\($*\)\.o[ :]*,\1.o $@ : ,g$(QUOTE) < $@.tmp > $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 512 | rm -f $@.tmp |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 513 | |
| 514 | %.d: %.m |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 515 | @rm -f $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 516 | $(CC) -M $(CFLAGS) $< > $@.tmp && \ |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 517 | sed $(QUOTE)s,\($*\)\.o[ :]*,\1.o $@ : ,g$(QUOTE) < $@.tmp > $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 518 | rm -f $@.tmp |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 519 | |
| 520 | %.d: %.mm |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 521 | @rm -f $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 522 | $(CXX) -M $(CXXFLAGS) $< > $@.tmp && \ |
Zachary Turner | 794e6a6 | 2015-03-13 21:51:11 +0000 | [diff] [blame] | 523 | sed $(QUOTE)s,\($*\)\.o[ :]*,\1.o $@ : ,g$(QUOTE) < $@.tmp > $@ $(JOIN_CMD) \ |
Pavel Labath | f81ed47 | 2015-02-05 09:52:42 +0000 | [diff] [blame] | 524 | rm -f $@.tmp |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 525 | |
| 526 | #---------------------------------------------------------------------- |
| 527 | # Include all of the makefiles for each source file so we don't have |
| 528 | # to manually track all of the prerequisites for each source file. |
| 529 | #---------------------------------------------------------------------- |
| 530 | sinclude $(PREREQS) |
Johnny Chen | e3dc0f0 | 2010-08-24 16:35:00 +0000 | [diff] [blame] | 531 | ifneq "$(DYLIB_NAME)" "" |
| 532 | sinclude $(DYLIB_PREREQS) |
| 533 | endif |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 534 | |
Johnny Chen | 8da4ddf | 2012-04-24 23:05:07 +0000 | [diff] [blame] | 535 | # Define a suffix rule for .mm -> .o |
| 536 | .SUFFIXES: .mm .o |
| 537 | .mm.o: |
| 538 | $(CXX) $(CXXFLAGS) -c $< |
| 539 | |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 540 | .PHONY: clean |
| 541 | dsym: $(DSYM) |
| 542 | all: $(EXE) $(DSYM) |
Johnny Chen | e1030cd | 2010-09-27 20:44:46 +0000 | [diff] [blame] | 543 | clean:: |
Tamas Berghammer | 1535beb | 2015-09-09 10:20:30 +0000 | [diff] [blame] | 544 | $(RM) $(OBJECTS) $(PREREQS) $(PREREQS:.d=.d.tmp) $(DWOS) $(ARCHIVE_NAME) $(ARCHIVE_OBJECTS) |
Ed Maste | 0990e05 | 2014-03-07 17:20:50 +0000 | [diff] [blame] | 545 | ifneq "$(DYLIB_NAME)" "" |
Jason Molenda | 53b8ea1 | 2014-03-08 01:53:27 +0000 | [diff] [blame] | 546 | $(RM) -r $(DYLIB_FILENAME).dSYM |
Tamas Berghammer | 1535beb | 2015-09-09 10:20:30 +0000 | [diff] [blame] | 547 | $(RM) $(DYLIB_OBJECTS) $(DYLIB_PREREQS) $(DYLIB_PREREQS:.d=.d.tmp) $(DYLIB_DWOS) $(DYLIB_FILENAME) $(DYLIB_FILENAME).debug |
Johnny Chen | 9bc867a | 2010-08-23 23:56:08 +0000 | [diff] [blame] | 548 | endif |
Ed Maste | 0990e05 | 2014-03-07 17:20:50 +0000 | [diff] [blame] | 549 | ifneq "$(DSYM)" "" |
Jason Molenda | 53b8ea1 | 2014-03-08 01:53:27 +0000 | [diff] [blame] | 550 | $(RM) -r "$(DSYM)" |
Ed Maste | 0990e05 | 2014-03-07 17:20:50 +0000 | [diff] [blame] | 551 | endif |
Zachary Turner | 3e9ca3a | 2014-12-16 16:48:19 +0000 | [diff] [blame] | 552 | ifeq "$(OS)" "Windows_NT" |
Zachary Turner | 0844d8d | 2015-08-26 19:44:45 +0000 | [diff] [blame] | 553 | # http://llvm.org/pr24589 |
| 554 | IF EXIST "$(EXE)" del "$(EXE)" |
Zachary Turner | 65fe1eb | 2015-03-26 16:43:25 +0000 | [diff] [blame] | 555 | $(RM) $(wildcard *.manifest *.pdb *.ilk) |
Zachary Turner | 0844d8d | 2015-08-26 19:44:45 +0000 | [diff] [blame] | 556 | ifneq "$(DYLIB_NAME)" "" |
Zachary Turner | 65fe1eb | 2015-03-26 16:43:25 +0000 | [diff] [blame] | 557 | $(RM) $(DYLIB_NAME).lib $(DYLIB_NAME).exp |
Zachary Turner | 0844d8d | 2015-08-26 19:44:45 +0000 | [diff] [blame] | 558 | endif |
| 559 | else |
| 560 | $(RM) "$(EXE)" |
Zachary Turner | 3e9ca3a | 2014-12-16 16:48:19 +0000 | [diff] [blame] | 561 | endif |
Johnny Chen | fa38041 | 2011-01-14 21:18:12 +0000 | [diff] [blame] | 562 | |
| 563 | #---------------------------------------------------------------------- |
| 564 | # From http://blog.melski.net/tag/debugging-makefiles/ |
| 565 | # |
| 566 | # Usage: make print-CC print-CXX print-LD |
| 567 | #---------------------------------------------------------------------- |
| 568 | print-%: |
| 569 | @echo '$*=$($*)' |
| 570 | @echo ' origin = $(origin $*)' |
| 571 | @echo ' flavor = $(flavor $*)' |
| 572 | @echo ' value = $(value $*)' |
Johnny Chen | 8b2c321 | 2011-01-28 17:22:29 +0000 | [diff] [blame] | 573 | |
Johnny Chen | 8b2c321 | 2011-01-28 17:22:29 +0000 | [diff] [blame] | 574 | ### Local Variables: ### |
| 575 | ### mode:makefile ### |
| 576 | ### End: ### |