taiga/Makefile

19 lines
296 B
Makefile
Raw Normal View History

2026-03-01 03:20:18 +09:00
CC = cc
2026-03-01 20:48:09 +09:00
CFLAGS = -I external/xemil/include -I src
2026-03-01 03:20:18 +09:00
LDFLAGS =
LIBS =
2026-03-02 17:32:20 +09:00
.PHONY: all format clean
2026-03-01 03:20:18 +09:00
all: taiga
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