This commit is contained in:
Nishi 2026-03-01 03:20:18 +09:00
commit 9ca077835b
Signed by: nishi
GPG key ID: 27EF69B208EB9343
7 changed files with 54 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
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