taiga/Makefile

16 lines
214 B
Makefile
Raw Normal View History

2026-03-01 03:20:18 +09:00
CC = cc
2026-03-01 20:48:09 +09:00
CFLAGS = -I external/xemil/include -I src
2026-03-01 03:20:18 +09:00
LDFLAGS =
LIBS =
.PHONY: all clean
all: taiga
include objs.mk
taiga$(E): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
clean:
2026-03-01 03:20:46 +09:00
rm -f src/*.o taiga taiga.exe