blob: a3ac806a170f5d295216052f572f6aaf74bb1b35 [file] [log] [blame]
epoger@google.com5d2e4cc2011-06-22 19:17:28 +00001# Makefile that wraps the Gyp and build steps for Unix and Mac (but not Windows)
2# Uses "make" to build on Unix, and "xcodebuild" to build on Mac.
3#
4# Some usage examples (tested on both Linux and Mac):
5#
6# # Clean everything
7# make clean
8#
9# # Build and run tests (in Debug mode)
10# make tests
11# out/Debug/tests
12#
13# # Build and run tests (in Release mode)
14# make tests BUILDTYPE=Release
15# out/Release/tests
16#
17# # Build bench and SampleApp (both in Release mode), and then run them
18# make SampleApp bench BUILDTYPE=Release
19# out/Release/bench -repeat 2
20# out/Release/SampleApp
21#
22# # Build all targets (in Debug mode)
23# make
24#
25# If you want more fine-grained control, you can run gyp and then build the
26# gyp-generated projects yourself.
27#
28# See http://code.google.com/p/skia/wiki/DocRoot for complete documentation.
29
30BUILDTYPE ?= Debug
31CWD := $(shell pwd)
epoger@google.com08c315d2011-07-27 14:17:35 +000032ALL_TARGETS := core SampleApp bench gm tests tools
epoger@google.comc9493a42011-07-27 14:06:25 +000033
34# Default target. This must be listed before all other targets.
35.PHONY: default
36default: all
37
38# As noted in http://code.google.com/p/skia/issues/detail?id=330 , building
39# multiple targets in parallel was failing. The special .NOTPARALLEL target
40# tells gnu make not to run targets within _this_ Makefile in parallel, but the
41# recursively invoked Makefile within out/ _is_ allowed to run in parallel
42# (so you can still get some speedup that way).
43.NOTPARALLEL:
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000044
45uname := $(shell uname)
46ifneq (,$(findstring CYGWIN, $(uname)))
47 $(error Cannot build using Make on Windows. See http://code.google.com/p/skia/wiki/GettingStartedOnWindows)
48endif
49
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000050.PHONY: all
epoger@google.comc9493a42011-07-27 14:06:25 +000051all: $(ALL_TARGETS)
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000052
53.PHONY: clean
54clean:
55 rm -rf out xcodebuild
56
epoger@google.comc9493a42011-07-27 14:06:25 +000057# Run gyp no matter what.
58.PHONY: gyp
59gyp:
60 $(CWD)/gyp_skia
61
62# Run gyp if necessary.
63#
64# On Linux, only run gyp if we haven't already generated the platform-specific
65# Makefiles. If the underlying gyp configuration has changed since these
66# Makefiles were generated, they will rerun gyp on their own.
67#
68# This does not work for Mac, though... so for now, we ALWAYS rerun gyp on Mac.
69# TODO(epoger): Figure out a better solution for Mac... maybe compare the
70# gypfile timestamps to the xcodebuild project timestamps?
71.PHONY: gyp_if_needed
72gyp_if_needed:
73ifneq (,$(findstring Linux, $(uname)))
74 $(MAKE) out/Makefile
75endif
76ifneq (,$(findstring Darwin, $(uname)))
77 $(CWD)/gyp_skia
78endif
79
80out/Makefile:
81 $(CWD)/gyp_skia
82
83# For all specific targets: run gyp if necessary, and then pass control to
84# the gyp-generated buildfiles.
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000085#
86# For the Mac, we create a convenience symlink to the generated binary.
epoger@google.comc9493a42011-07-27 14:06:25 +000087.PHONY: $(ALL_TARGETS)
88$(ALL_TARGETS):: gyp_if_needed
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000089ifneq (,$(findstring Linux, $(uname)))
epoger@google.comeaacf472011-06-28 16:48:56 +000090 $(MAKE) -C out $@ BUILDTYPE=$(BUILDTYPE)
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000091endif
92ifneq (,$(findstring Darwin, $(uname)))
epoger@google.comab9b6582011-08-15 19:22:39 +000093 rm -f out/$(BUILDTYPE) || if test -d out/$(BUILDTYPE); then echo "run 'make clean' or otherwise delete out/$(BUILDTYPE)"; exit 1; fi
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000094 xcodebuild -project out/gyp/$@.xcodeproj -configuration $(BUILDTYPE)
epoger@google.comab9b6582011-08-15 19:22:39 +000095 ln -s $(CWD)/xcodebuild/$(BUILDTYPE) out/$(BUILDTYPE)
epoger@google.com5d2e4cc2011-06-22 19:17:28 +000096endif
97