taiga/Makefile

21 lines
310 B
Makefile
Raw Normal View History

2026-03-05 03:45:08 +09:00
CC ?= cc
CFLAGS ?= -I external/xemil/include -I src
LDFLAGS ?=
LIBS ?=
E ?=
2026-03-01 03:20:18 +09:00
2026-03-02 17:32:20 +09:00
.PHONY: all format clean
2026-03-01 03:20:18 +09:00
2026-03-03 01:02:01 +09:00
all: taiga$(E)
2026-03-01 03:20:18 +09:00
include objs.mk
taiga$(E): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
2026-03-02 17:32:20 +09:00
format:
clang-format --verbose -i `find src -name "*.c" -or -name "*.h"`
2026-03-01 03:20:18 +09:00
clean:
2026-03-01 03:20:46 +09:00
rm -f src/*.o taiga taiga.exe