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

16 lines
203 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 *.o taiga taiga.exe