Tweaked button graphics

This commit is contained in:
2015-12-25 22:53:05 +11:00
parent e6e2421ba0
commit fe7bbbbb3d
9 changed files with 39 additions and 20 deletions
+3 -3
View File
@@ -37,12 +37,12 @@ $(OUTDIR):
clean:
ifeq ($(OS),Windows_NT)
del /S /Q *.o *.a *.exe $(OUTDIR)\*
rmdir /S /Q $(OUTDIR)
del /S /Q *.o *.a *.exe $(OUTDIR)\*.dll
# rmdir /S /Q $(OUTDIR)
else ifeq ($(shell uname), Linux)
find . -type f -name '*.o' -exec rm -f -r -v {} \;
find . -type f -name '*.a' -exec rm -f -r -v {} \;
rm $(OUTDIR)/* -f
# rm $(OUTDIR)/* -f
find . -empty -type d -delete
endif