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