blob: 3008779bb34ecbd2b2080ac30021b40ddcc0d6e0 [file] [log] [blame]
Ben Murdoch69a99ed2011-11-30 16:03:39 +00001# Copyright 2011 the V8 project authors. All rights reserved.
2# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above
9# copyright notice, this list of conditions and the following
10# disclaimer in the documentation and/or other materials provided
11# with the distribution.
12# * Neither the name of Google Inc. nor the names of its
13# contributors may be used to endorse or promote products derived
14# from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28
29# Variable default definitions. Override them by exporting them in your shell.
30CXX ?= "g++" # For distcc: export CXX="distcc g++"
31LINK ?= "g++"
32OUTDIR ?= out
33TESTJOBS ?= -j16
34GYPFLAGS ?=
35
36# Special build flags. Use them like this: "make library=shared"
37
38# library=shared || component=shared_library
39ifeq ($(library), shared)
40 GYPFLAGS += -Dcomponent=shared_library
41endif
42ifdef component
43 GYPFLAGS += -Dcomponent=$(component)
44endif
45# console=readline
46ifdef console
47 GYPFLAGS += -Dconsole=$(console)
48endif
49# disassembler=on
50ifeq ($(disassembler), on)
51 GYPFLAGS += -Dv8_enable_disassembler=1
52endif
53# snapshot=off
54ifeq ($(snapshot), off)
55 GYPFLAGS += -Dv8_use_snapshot='false'
56endif
57# gdbjit=on
58ifeq ($(gdbjit), on)
59 GYPFLAGS += -Dv8_enable_gdbjit=1
60endif
61# liveobjectlist=on
62ifeq ($(liveobjectlist), on)
63 GYPFLAGS += -Dv8_use_liveobjectlist=true
64endif
65# vfp3=off
66ifeq ($(vfp3), off)
67 GYPFLAGS += -Dv8_can_use_vfp_instructions=false
68else
69 GYPFLAGS += -Dv8_can_use_vfp_instructions=true
70endif
71
72# ----------------- available targets: --------------------
73# - any arch listed in ARCHES (see below)
74# - any mode listed in MODES
75# - every combination <arch>.<mode>, e.g. "ia32.release"
76# - any of the above with .check appended, e.g. "ia32.release.check"
77# - default (no target specified): build all ARCHES and MODES
78# - "check": build all targets and run all tests
79# - "<arch>.clean" for any <arch> in ARCHES
80# - "clean": clean all ARCHES
81
82# ----------------- internal stuff ------------------------
83
84# Architectures and modes to be compiled. Consider these to be internal
85# variables, don't override them (use the targets instead).
86ARCHES = ia32 x64 arm
87MODES = release debug
88
89# List of files that trigger Makefile regeneration:
90GYPFILES = build/all.gyp build/common.gypi build/standalone.gypi \
91 preparser/preparser.gyp samples/samples.gyp src/d8.gyp \
92 test/cctest/cctest.gyp tools/gyp/v8.gyp
93
94# Generates all combinations of ARCHES and MODES, e.g. "ia32.release".
95BUILDS = $(foreach mode,$(MODES),$(addsuffix .$(mode),$(ARCHES)))
96# Generates corresponding test targets, e.g. "ia32.release.check".
97CHECKS = $(addsuffix .check,$(BUILDS))
98# File where previously used GYPFLAGS are stored.
99ENVFILE = $(OUTDIR)/environment
100
101.PHONY: all clean $(ENVFILE).new \
102 $(ARCHES) $(MODES) $(BUILDS) $(addsuffix .clean,$(ARCHES))
103
104# Target definitions. "all" is the default.
105all: $(MODES)
106
107# Compile targets. MODES and ARCHES are convenience targets.
108.SECONDEXPANSION:
109$(MODES): $(addsuffix .$$@,$(ARCHES))
110
111$(ARCHES): $(addprefix $$@.,$(MODES))
112
113# Defines how to build a particular target (e.g. ia32.release).
114$(BUILDS): $(OUTDIR)/Makefile-$$(basename $$@)
115 @$(MAKE) -C "$(OUTDIR)" -f Makefile-$(basename $@) \
116 CXX="$(CXX)" LINK="$(LINK)" \
117 BUILDTYPE=$(shell echo $(subst .,,$(suffix $@)) | \
118 python -c "print raw_input().capitalize()") \
119 builddir="$(shell pwd)/$(OUTDIR)/$@"
120
121# Test targets.
122check: all
123 @tools/test-wrapper-gypbuild.py $(TESTJOBS) --outdir=$(OUTDIR)
124
125$(addsuffix .check,$(MODES)): $$(basename $$@)
126 @tools/test-wrapper-gypbuild.py $(TESTJOBS) --outdir=$(OUTDIR) \
127 --mode=$(basename $@)
128
129$(addsuffix .check,$(ARCHES)): $$(basename $$@)
130 @tools/test-wrapper-gypbuild.py $(TESTJOBS) --outdir=$(OUTDIR) \
131 --arch=$(basename $@)
132
133$(CHECKS): $$(basename $$@)
134 @tools/test-wrapper-gypbuild.py $(TESTJOBS) --outdir=$(OUTDIR) \
135 --arch-and-mode=$(basename $@)
136
137# Clean targets. You can clean each architecture individually, or everything.
138$(addsuffix .clean,$(ARCHES)):
139 rm -f $(OUTDIR)/Makefile-$(basename $@)
140 rm -rf $(OUTDIR)/$(basename $@).release
141 rm -rf $(OUTDIR)/$(basename $@).debug
142 find $(OUTDIR) -regex '.*\(host\|target\)-$(basename $@)\.mk' -delete
143
144clean: $(addsuffix .clean,$(ARCHES))
145
146# GYP file generation targets.
147$(OUTDIR)/Makefile-ia32: $(GYPFILES) $(ENVFILE)
148 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
149 -Ibuild/standalone.gypi --depth=. -Dtarget_arch=ia32 \
150 -S-ia32 $(GYPFLAGS)
151
152$(OUTDIR)/Makefile-x64: $(GYPFILES) $(ENVFILE)
153 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
154 -Ibuild/standalone.gypi --depth=. -Dtarget_arch=x64 \
155 -S-x64 $(GYPFLAGS)
156
157$(OUTDIR)/Makefile-arm: $(GYPFILES) $(ENVFILE)
158 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
159 -Ibuild/standalone.gypi --depth=. -Ibuild/armu.gypi \
160 -S-arm $(GYPFLAGS)
161
162# Replaces the old with the new environment file if they're different, which
163# will trigger GYP to regenerate Makefiles.
164$(ENVFILE): $(ENVFILE).new
165 @if test -r $(ENVFILE) && cmp $(ENVFILE).new $(ENVFILE) >/dev/null; \
166 then rm $(ENVFILE).new; \
167 else mv $(ENVFILE).new $(ENVFILE); fi
168
169# Stores current GYPFLAGS in a file.
170$(ENVFILE).new:
171 @mkdir -p $(OUTDIR); echo "GYPFLAGS=$(GYPFLAGS)" > $(ENVFILE).new;