-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
78 lines (51 loc) · 1.79 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
CC = cc
LD = cc
AR = ar
emscripten: CC = emcc
emscripten: LD = emcc
emscripten: AR = emar
DIR = build
SRCS = $(wildcard *.c) $(wildcard components/*.c)
OBJS_REL = $(patsubst %.c, $(DIR)/%.o, $(SRCS))
OBJS_DEB = $(patsubst %.c, $(DIR)/%.debug.o, $(SRCS))
OBJS_EMS = $(patsubst %.c, $(DIR)/%.emscripten.o, $(SRCS))
CFLAGS = -Wall -Wno-unused-function
CFLAGS_REL = $(CFLAGS) -std=c99 -O3
CFLAGS_DEB = $(CFLAGS) -std=c99 -g3 -DDEBUG
CFLAGS_EMS = $(CFLAGS) -O3
##############################################################################
all: init $(OBJS_REL)
make -C candle SAUCES=resauces
$(LD) -o $(DIR)/coolbutts $(OBJS_REL) `candle/candle-config --libs`
$(DIR)/%.o: %.c
$(CC) -o $@ -c $< $(CFLAGS_REL)
##############################################################################
debug: init $(DIR)/coolbutts_debug
$(DIR)/coolbutts_debug: $(OBJS_DEB)
make -C candle debug SAUCES=resauces
$(LD) -o $@ $(OBJS_DEB) `candle/candle-config --debug --libs`
$(DIR)/%.debug.o: %.c
$(CC) -o $@ -c $< $(CFLAGS_DEB)
##############################################################################
emscripten: init $(DIR)/index.js
make -C candle emscripten SAUCES=resauces
$(CC) -o index.html $(OBJS_EMS)
$(DIR)/index.js: $(OBJS_EMS)
$(LD) -o $@ `candle/candle-config --emscripten --libs`
$(DIR)/%.emscripten.o: %.c
$(CC) -o $@ -c $< $(CFLAGS_EMS)
##############################################################################
init:
mkdir -p $(DIR)
mkdir -p $(DIR)/components
##############################################################################
run: all
$(DIR)/coolbutts 11
gdb: debug
gdb $(DIR)/coolbutts_debug
valgrind: debug
valgrind --log-fd=1 --suppressions=val_sup $(DIR)/coolbutts_debug 10 | tee val_log | less
clean:
rm -r $(DIR)
$(MAKE) -C candle clean
.PHONY: init clean release