blob: 4decd286fc52eae57b77324653533309932e633f [file] [log] [blame]
reed@android.com4c7d3d62009-01-21 03:15:13 +00001# Simple makefile for skia library and test apps
reed@android.com4cb8bd12009-01-16 16:15:37 +00002
reed@android.com9db60872009-01-21 15:07:03 +00003# setup our defaults
reed@android.com4c7d3d62009-01-21 03:15:13 +00004CC := gcc
reed@android.comc4d40902009-04-08 18:05:24 +00005C_INCLUDES := -Iinclude/config -Iinclude/core -Iinclude/effects -Iinclude/images -Iinclude/utils
reed@android.com04225dc2009-03-20 04:59:37 +00006CFLAGS := -Wall # -O2
reed@android.com4c7d3d62009-01-21 03:15:13 +00007LINKER_OPTS := -lpthread
8DEFINES := -DSK_CAN_USE_FLOAT
reed@android.com4cb8bd12009-01-16 16:15:37 +00009HIDE = @
10
reed@android.com9db60872009-01-21 15:07:03 +000011ifeq ($(SKIA_SCALAR),fixed)
reed@android.com4c7d3d62009-01-21 03:15:13 +000012 DEFINES += -DSK_SCALAR_IS_FIXED
13else
14 DEFINES += -DSK_SCALAR_IS_FLOAT
15endif
16
17ifeq ($(SKIA_DEBUG),true)
18 DEFINES += -DSK_DEBUG -DSK_SUPPORT_UNIT
19else
20 DEFINES += -DSK_RELEASE
21endif
reed@android.com4cb8bd12009-01-16 16:15:37 +000022
23# start with the core (required)
24include src/core/core_files.mk
25SRC_LIST := $(addprefix src/core/, $(SOURCE))
26
27# we usually need ports
28include src/ports/ports_files.mk
29SRC_LIST += $(addprefix src/ports/, $(SOURCE))
30
31# do we want effects?
32include src/effects/effects_files.mk
33SRC_LIST += $(addprefix src/effects/, $(SOURCE))
34
reed@android.com4c7d3d62009-01-21 03:15:13 +000035# core image files
36include src/images/images_files.mk
37SRC_LIST += $(addprefix src/images/, $(SOURCE))
38
reed@android.com9781ca52009-04-14 14:28:22 +000039# core util files
40include src/utils/utils_files.mk
41SRC_LIST += $(addprefix src/utils/, $(SOURCE))
42
43# extra files we want to build to prevent bit-rot, but not link
44JUST_COMPILE_LIST := src/ports/SkFontHost_tables.cpp
45
reed@android.com4c7d3d62009-01-21 03:15:13 +000046# conditional files based on our platform
reed@android.com9db60872009-01-21 15:07:03 +000047ifeq ($(SKIA_BUILD_FOR),mac)
reed@android.com4c7d3d62009-01-21 03:15:13 +000048 LINKER_OPTS += -framework Carbon
49 DEFINES += -DSK_BUILD_FOR_MAC
50
51 C_INCLUDES += -Iinclude/utils/mac
52 SRC_LIST += src/ports/SkImageDecoder_CG.cpp
53 SRC_LIST += src/utils/mac/SkCreateCGImageRef.cpp
reed@android.com3a859a02009-01-28 00:56:29 +000054 SRC_LIST += src/ports/SkFontHost_mac.cpp
reed@android.com4c7d3d62009-01-21 03:15:13 +000055else
reed@android.comfb210162009-01-23 21:24:39 +000056 LINKER_OPTS += -lpng
reed@android.com4c7d3d62009-01-21 03:15:13 +000057 DEFINES += -DSK_BUILD_FOR_UNIX
58
reed@android.com8015dd82009-06-21 00:49:18 +000059 SRC_LIST += src/ports/SkFontHost_none.cpp
reed@android.com7b830a12009-01-22 13:41:08 +000060 # these are our registry-based factories
61 SRC_LIST += src/images/SkImageDecoder_Factory.cpp
62 SRC_LIST += src/images/SkImageEncoder_Factory.cpp
reed@android.com7b830a12009-01-22 13:41:08 +000063 # support files
64 SRC_LIST += src/images/SkScaledBitmapSampler.cpp
reed@android.com4c7d3d62009-01-21 03:15:13 +000065endif
66
reed@android.com4cb8bd12009-01-16 16:15:37 +000067out/%.o : %.cpp
68 @mkdir -p $(dir $@)
69 $(HIDE)$(CC) $(C_INCLUDES) $(CFLAGS) $(DEFINES) -c $< -o $@
70 @echo "compiling $@"
71
72# now build out objects
73OBJ_LIST := $(SRC_LIST:.cpp=.o)
74OBJ_LIST := $(addprefix out/, $(OBJ_LIST))
75
reed@android.com9781ca52009-04-14 14:28:22 +000076# we want to compile these, but we don't actually link them
77JUST_COMPILE_OBJS := $(JUST_COMPILE_LIST:.cpp=.o)
78JUST_COMPILE_OBJS := $(addprefix out/, $(JUST_COMPILE_OBJS))
79
80out/libskia.a: Makefile $(OBJ_LIST) $(JUST_COMPILE_OBJS)
reed@android.com4cb8bd12009-01-16 16:15:37 +000081 $(HIDE)$(AR) ru $@ $(OBJ_LIST)
82 $(HIDE)ranlib $@
83
reed@android.coma396a162009-02-28 18:26:14 +000084##############################################################################
85
reed@android.com953ce8d2009-04-01 18:38:43 +000086BENCH_SRCS := RectBench.cpp SkBenchmark.cpp benchmain.cpp BitmapBench.cpp
reed@android.com4cb8bd12009-01-16 16:15:37 +000087BENCH_SRCS := $(addprefix bench/, $(BENCH_SRCS))
reed@android.com1b4c8152009-01-23 21:51:56 +000088
reed@android.com6c924ad2009-03-31 03:48:49 +000089BENCH_SRCS += src/effects/SkNWayCanvas.cpp
90
reed@android.comfb210162009-01-23 21:24:39 +000091# add any optional codecs for this app
reed@android.com3a859a02009-01-28 00:56:29 +000092ifeq ($(SKIA_BUILD_FOR),mac)
reed@android.comd6638e62009-04-08 05:03:52 +000093 BENCH_SRCS += bench/TextBench.cpp
reed@android.com3a859a02009-01-28 00:56:29 +000094else
reed@android.coma21ff6f2009-01-27 18:25:02 +000095 BENCH_SRCS += src/images/SkImageDecoder_libpng.cpp
reed@android.com1b4c8152009-01-23 21:51:56 +000096endif
reed@android.comfb210162009-01-23 21:24:39 +000097
reed@android.com4cb8bd12009-01-16 16:15:37 +000098BENCH_OBJS := $(BENCH_SRCS:.cpp=.o)
99BENCH_OBJS := $(addprefix out/, $(BENCH_OBJS))
100
101bench: $(BENCH_OBJS) out/libskia.a
reed@android.com4c7d3d62009-01-21 03:15:13 +0000102 @echo "linking bench..."
103 $(HIDE)g++ $(BENCH_OBJS) out/libskia.a -o out/bench/bench $(LINKER_OPTS)
reed@android.com4cb8bd12009-01-16 16:15:37 +0000104
reed@android.coma396a162009-02-28 18:26:14 +0000105##############################################################################
106
reed@android.com0650c6c2009-03-04 14:02:44 +0000107# we let tests cheat and see private headers, so we can unittest modules
108C_INCLUDES += -Isrc/core
109
reed@android.combbff1d52009-06-05 16:21:03 +0000110include tests/tests_files.mk
111TESTS_SRCS := $(addprefix tests/, $(SOURCE))
reed@android.coma396a162009-02-28 18:26:14 +0000112
113TESTS_OBJS := $(TESTS_SRCS:.cpp=.o)
114TESTS_OBJS := $(addprefix out/, $(TESTS_OBJS))
115
116tests: $(TESTS_OBJS) out/libskia.a
117 @echo "linking tests..."
118 $(HIDE)g++ $(TESTS_OBJS) out/libskia.a -o out/tests/tests $(LINKER_OPTS)
119
120##############################################################################
121
reed@android.comaf459792009-04-24 19:52:53 +0000122SKIMAGE_SRCS := skimage_main.cpp
123
124SKIMAGE_SRCS := $(addprefix tools/, $(SKIMAGE_SRCS))
125
126SKIMAGE_OBJS := $(SKIMAGE_SRCS:.cpp=.o)
127SKIMAGE_OBJS := $(addprefix out/, $(SKIMAGE_OBJS))
128
129skimage: $(SKIMAGE_OBJS) out/libskia.a
130 @echo "linking skimage..."
131 $(HIDE)g++ $(SKIMAGE_OBJS) out/libskia.a -o out/tools/skimage $(LINKER_OPTS)
132
133##############################################################################
134
reed@android.com048522d2009-06-23 12:19:41 +0000135include gm/gm_files.mk
136GM_SRCS := $(addprefix gm/, $(SOURCE))
reed@android.comdd0ac282009-06-20 02:38:16 +0000137
138GM_OBJS := $(GM_SRCS:.cpp=.o)
139GM_OBJS := $(addprefix out/, $(GM_OBJS))
140
141gm: $(GM_OBJS) out/libskia.a
142 @echo "linking gm..."
143 $(HIDE)g++ $(GM_OBJS) out/libskia.a -o out/gm/gm $(LINKER_OPTS)
144
145##############################################################################
146
reed@android.comee0eb012009-06-23 17:13:30 +0000147.PHONY: all
148all: $ bench gm skimage tests
149
reed@android.com9db60872009-01-21 15:07:03 +0000150.PHONY: clean
reed@android.com4cb8bd12009-01-16 16:15:37 +0000151clean:
152 $(HIDE)rm -rf out
reed@android.com9db60872009-01-21 15:07:03 +0000153
154.PHONY: help
reed@android.com4c7d3d62009-01-21 03:15:13 +0000155help:
156 @echo "Targets:"
157 @echo " <default>: out/libskia.a"
158 @echo " bench: out/bench/bench"
reed@android.comdd0ac282009-06-20 02:38:16 +0000159 @echo " gm: out/gm/gm"
reed@android.comaf459792009-04-24 19:52:53 +0000160 @echo " skimage: out/tools/skimage"
reed@android.coma396a162009-02-28 18:26:14 +0000161 @echo " tests: out/tests/tests"
reed@android.com4c7d3d62009-01-21 03:15:13 +0000162 @echo " clean: removes entire out/ directory"
163 @echo " help: this text"
reed@android.com9db60872009-01-21 15:07:03 +0000164 @echo "Options: (after make, or in bash shell)"
reed@android.com4c7d3d62009-01-21 03:15:13 +0000165 @echo " SKIA_DEBUG=true for debug build"
reed@android.com9db60872009-01-21 15:07:03 +0000166 @echo " SKIA_SCALAR=fixed for fixed-point build"
167 @echo " SKIA_BUILD_FOR=mac for mac build (e.g. CG for image decoding)"
reed@android.com4c7d3d62009-01-21 03:15:13 +0000168 @echo ""