This commit is contained in:
Nishi 2026-03-06 23:36:20 +09:00
commit 1f608dafdf
2 changed files with 4 additions and 0 deletions

View file

@ -2,6 +2,7 @@ CC ?= cc
CFLAGS ?= -I external/xemil/include -I src
LDFLAGS ?=
LIBS ?=
AFTER ?=
E ?=
@ -13,6 +14,8 @@ include objs.mk
taiga$(E): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
$(AFTER)
-rm -f *.res
format:
clang-format --verbose -i `find src -name "*.c" -or -name "*.h"`

View file

@ -1,4 +1,5 @@
CC = owcc -bnt
E = .exe
AFTER = wrc src/taiga.rc taiga.exe
include Makefile