This commit is contained in:
parent
3ad1517402
commit
994d354bd6
3 changed files with 3 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,4 +1,5 @@
|
|||
*.o
|
||||
*.res
|
||||
*.exe
|
||||
*.core
|
||||
/taiga
|
||||
|
|
|
|||
3
Makefile
3
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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue