axui-growth-chamber/Makefile

33 lines
584 B
Makefile
Raw Normal View History

cc = clang
sdl_ldflags = $(shell pkg-config SDL2_ttf sdl2 --libs)
cflags = -g -O0 -pthread \
-Wall \
-Wshadow \
-Wno-pragma-once-outside-header \
-Wpointer-arith \
-Wstrict-prototypes \
-Wmissing-prototypes \
-Wfloat-equal \
-Werror=implicit-function-declaration
srcs = $(wildcard src/**/*.c test/*.c)
hdrs = $(wildcard **/*.h)
test_bin = axtest
all: ${test_bin}
2020-02-08 14:24:50 +00:00
clean:
2020-02-09 16:59:16 +00:00
rm -rf ${test_bin} _build
gen:
mkdir -p _build
racket scripts/enum.rkt src _build
2020-02-08 14:24:50 +00:00
${test_bin}: ${srcs} ${hdrs}
${cc} ${cflags} ${srcs} ${sdl_ldflags} -o ${test_bin}
2020-02-09 16:59:16 +00:00
.PHONY: all clean gen