taiga/Makefile

25 lines
407 B
Makefile
Raw Normal View History

2026-03-10 06:59:29 +09:00
CC = cc
CFLAGS = -I external/xemil/include -I external/md4c/src -I external/stb -I src $(DEFS)
LDFLAGS =
LIBS =
AFTER =
2026-03-05 03:45:08 +09:00
2026-03-10 06:59:29 +09:00
E =
-include Makefile.$(TARGET)
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-06 23:36:20 +09:00
$(AFTER)
2026-03-01 03:20:18 +09:00
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-06 23:39:41 +09:00
rm -f src/*.o src/*.res taiga taiga.exe