From 994d354bd62b89557787e23ce8e0b5751608c072 Mon Sep 17 00:00:00 2001 From: Nishi Date: Fri, 6 Mar 2026 23:39:41 +0900 Subject: [PATCH] fix --- .gitignore | 1 + Makefile | 3 +-- Makefile.watcom | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index de2f8c6..4e638b9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.o +*.res *.exe *.core /taiga diff --git a/Makefile b/Makefile index 9594f43..ed50e8b 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/Makefile.watcom b/Makefile.watcom index 62038b2..d2f45ee 100644 --- a/Makefile.watcom +++ b/Makefile.watcom @@ -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