fix
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-06 23:39:41 +09:00
commit 994d354bd6
3 changed files with 3 additions and 3 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
*.o
*.res
*.exe
*.core
/taiga

View file

@ -15,10 +15,9 @@ 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"`
clean:
rm -f src/*.o taiga taiga.exe
rm -f src/*.o src/*.res taiga taiga.exe

View file

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