Fixed Makefile-s

This commit is contained in:
xdrm-brackets 2017-05-19 08:50:44 +02:00
parent 4636c79334
commit 87509e8efe
2 changed files with 6 additions and 6 deletions

View File

@ -23,5 +23,5 @@ all: boot
# cleans the compiled files
clean:
@find ./lib/network/**/*.o >/dev/null 2>&1 && rm ./lib/network/**/*.o || return 0;
@find ./boot >/dev/null 2>&1 && rm ./boot || return 0;
@rm ./lib/network/**/*.o;
@rm ./boot;

View File

@ -35,7 +35,7 @@ all: boot
# cleans the compiled files
clean:
@find lib/network/*.o >/dev/null 2>&1 && rm lib/network/*.o || return 0;
@find lib/network/**/*.o >/dev/null 2>&1 && rm lib/network/**/*.o || return 0;
@find lib/local/*.o >/dev/null 2>&1 && rm lib/local/*.o || return 0;
@find boot >/dev/null 2>&1 && rm boot || return 0;
@rm lib/network/*.o;
@rm lib/network/**/*.o;
@rm lib/local/*.o;
@rm boot;