taiga/Makefile
NishiOwO 9b69a269f7
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good
things
2026-03-02 17:32:20 +09:00

19 lines
296 B
Makefile

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