Fixed Makefile-s
This commit is contained in:
parent
4636c79334
commit
87509e8efe
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue