Fixed Makefile-s
This commit is contained in:
parent
4636c79334
commit
87509e8efe
|
@ -23,5 +23,5 @@ all: boot
|
||||||
|
|
||||||
# cleans the compiled files
|
# cleans the compiled files
|
||||||
clean:
|
clean:
|
||||||
@find ./lib/network/**/*.o >/dev/null 2>&1 && rm ./lib/network/**/*.o || return 0;
|
@rm ./lib/network/**/*.o;
|
||||||
@find ./boot >/dev/null 2>&1 && rm ./boot || return 0;
|
@rm ./boot;
|
||||||
|
|
|
@ -35,7 +35,7 @@ all: boot
|
||||||
|
|
||||||
# cleans the compiled files
|
# cleans the compiled files
|
||||||
clean:
|
clean:
|
||||||
@find lib/network/*.o >/dev/null 2>&1 && rm lib/network/*.o || return 0;
|
@rm lib/network/*.o;
|
||||||
@find lib/network/**/*.o >/dev/null 2>&1 && rm lib/network/**/*.o || return 0;
|
@rm lib/network/**/*.o;
|
||||||
@find lib/local/*.o >/dev/null 2>&1 && rm lib/local/*.o || return 0;
|
@rm lib/local/*.o;
|
||||||
@find boot >/dev/null 2>&1 && rm boot || return 0;
|
@rm boot;
|
||||||
|
|
Loading…
Reference in New Issue