taiga/Makefile
NishiOwO c34d4d9962
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good
fix makefile
2026-03-10 06:59:29 +09:00

25 lines
407 B
Makefile

CC = cc
CFLAGS = -I external/xemil/include -I external/md4c/src -I external/stb -I src $(DEFS)
LDFLAGS =
LIBS =
AFTER =
E =
-include Makefile.$(TARGET)
.PHONY: all format clean
all: taiga$(E)
include objs.mk
taiga$(E): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
$(AFTER)
format:
clang-format --verbose -i `find src -name "*.c" -or -name "*.h"`
clean:
rm -f src/*.o src/*.res taiga taiga.exe