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