forked from SteffenBauer/PocketPuzzles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
47 lines (31 loc) · 1.48 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
.PHONY = all clean
PBSDK ?= ../../pocketbook-sdk5
CC = $(PBSDK)/bin/arm-obreey-linux-gnueabi-gcc
STRIP = $(PBSDK)/bin/arm-obreey-linux-gnueabi-strip
PBRES = $(PBSDK)/bin/pbres
GIT_VERSION := "$(shell date -I)-$(shell git describe --always --tags)"
CFLAGS = -DCOMBINED -std=c99 -DNDEBUG -fsigned-char -fomit-frame-pointer -fPIC -O2 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -linkview -lfreetype -lm -D_XOPEN_SOURCE=632 -DVERSION=\"$(GIT_VERSION)\"
UTILSRCS := $(wildcard utils/*.c)
UTILOBJS := $(UTILSRCS:%.c=%.o)
GAMESRCS := $(wildcard games/*.c)
GAMEOBJS := $(GAMESRCS:%.c=%.o)
FRONTENDSRCS := $(wildcard frontend/*.c)
FRONTENDOBJS := $(FRONTENDSRCS:%.c=%.o)
FRONTENDHDRS := $(wildcard include/frontend/*.h)
HEADERS := $(wildcard include /*.h)
ICONS := $(wildcard icons/*/*.bmp)
all: build/SGTPuzzles.app
build/SGTPuzzles.app: icons/icons.c $(GAMEOBJS) $(FRONTENDOBJS) $(UTILOBJS)
mkdir -p ./build
LC_ALL=C $(CC) -s icons/icons.c $(GAMEOBJS) $(FRONTENDOBJS) $(UTILOBJS) -I./include -o ./build/SGTPuzzles.app $(CFLAGS)
LC_ALL=C $(STRIP) ./build/SGTPuzzles.app
icons/icons.c: $(ICONS)
LC_ALL=C $(PBRES) -c ./icons/icons.c -4 $(ICONS)
frontend/%.o: frontend/%.c $(HEADERS) $(FRONTENDHDRS)
LC_ALL=C $(CC) -c $< -o $@ -I./include $(CFLAGS)
games/%.o: games/%.c $(HEADERS)
LC_ALL=C $(CC) -c $< -o $@ -I./include $(CFLAGS)
utils/%.o: utils/%.c $(HEADERS)
LC_ALL=C $(CC) -c $< -o $@ -I./include $(CFLAGS)
clean:
rm -f build/puzzles.app icons/icons.c games/*.o utils/*.o frontend/*.o