Working on the ui, incomplete

This commit is contained in:
2015-07-08 03:09:50 +10:00
parent e08e34b677
commit 4ced681c76
7 changed files with 26 additions and 171 deletions
+3 -3
View File
@@ -33,9 +33,9 @@ clean:
ifeq ($(OS),Windows_NT)
$(RM) *.o *.a *.exe
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 -f -v out/client out/server
find . -type f -name '*.o' -exec rm -f -r -v {} \;
find . -type f -name '*.a' -exec rm -f -r -v {} \;
rm -f -v $(OUT)
endif
rebuild: clean all