taiga/Makefile
2026-03-01 03:20:46 +09:00

16 lines
207 B
Makefile

CC = cc
CFLAGS = -I external/xemil/include
LDFLAGS =
LIBS =
.PHONY: all clean
all: taiga
include objs.mk
taiga$(E): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
clean:
rm -f src/*.o taiga taiga.exe