Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: Makefile

Issue 1084753002: Add some configure/CMake options for enabling/disabling Subzero targets. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: line up better Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « CMakeLists.txt ('k') | autoconf/configure.ac » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #===- ./Makefile -------------------------------------------*- Makefile -*--===# 1 #===- ./Makefile -------------------------------------------*- Makefile -*--===#
2 # 2 #
3 # The LLVM Compiler Infrastructure 3 # The LLVM Compiler Infrastructure
4 # 4 #
5 # This file is distributed under the University of Illinois Open Source 5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details. 6 # License. See LICENSE.TXT for details.
7 # 7 #
8 #===------------------------------------------------------------------------===# 8 #===------------------------------------------------------------------------===#
9 9
10 LEVEL := . 10 LEVEL := .
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 # autoconf/configure.ac. 207 # autoconf/configure.ac.
208 # Note that Makefile.config is covered by its own separate rule 208 # Note that Makefile.config is covered by its own separate rule
209 # in Makefile.rules where it can be reused by sub-projects. 209 # in Makefile.rules where it can be reused by sub-projects.
210 #------------------------------------------------------------------------ 210 #------------------------------------------------------------------------
211 FilesToConfig := \ 211 FilesToConfig := \
212 bindings/ocaml/llvm/META.llvm \ 212 bindings/ocaml/llvm/META.llvm \
213 docs/doxygen.cfg \ 213 docs/doxygen.cfg \
214 llvm.spec \ 214 llvm.spec \
215 include/llvm/Config/config.h \ 215 include/llvm/Config/config.h \
216 include/llvm/Config/llvm-config.h \ 216 include/llvm/Config/llvm-config.h \
217 include/llvm/Config/SZTargets.def \
217 include/llvm/Config/Targets.def \ 218 include/llvm/Config/Targets.def \
218 include/llvm/Config/AsmPrinters.def \ 219 include/llvm/Config/AsmPrinters.def \
219 include/llvm/Config/AsmParsers.def \ 220 include/llvm/Config/AsmParsers.def \
220 include/llvm/Config/Disassemblers.def \ 221 include/llvm/Config/Disassemblers.def \
221 include/llvm/Support/DataTypes.h 222 include/llvm/Support/DataTypes.h
222 FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig)) 223 FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
223 224
224 all-local:: $(FilesToConfigPATH) 225 all-local:: $(FilesToConfigPATH)
225 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in 226 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
226 $(Echo) Regenerating $* 227 $(Echo) Regenerating $*
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 # declare all targets at this level to be serial: 300 # declare all targets at this level to be serial:
300 301
301 .NOTPARALLEL: 302 .NOTPARALLEL:
302 303
303 else # Building "Apple-style." 304 else # Building "Apple-style."
304 # In an Apple-style build, once configuration is done, lines marked 305 # In an Apple-style build, once configuration is done, lines marked
305 # "Apple-style" are removed with sed! Please don't remove these! 306 # "Apple-style" are removed with sed! Please don't remove these!
306 # Look for the string "Apple-style" in utils/buildit/build_llvm. 307 # Look for the string "Apple-style" in utils/buildit/build_llvm.
307 include $(shell find . -name GNUmakefile) # Building "Apple-style." 308 include $(shell find . -name GNUmakefile) # Building "Apple-style."
308 endif # Building "Apple-style." 309 endif # Building "Apple-style."
OLDNEW
« no previous file with comments | « CMakeLists.txt ('k') | autoconf/configure.ac » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698