build: fix clean targets in Makefiles (#667)
This commit is contained in:
parent
6c45ccec6a
commit
c1bd1e59d3
3 changed files with 3 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -33,7 +33,7 @@ i18nbuild:
|
|||
clean:
|
||||
rm -f .running-sdk
|
||||
rm -rf docs
|
||||
make -C libs/lmo host-clean
|
||||
make -C libs/web host-clean
|
||||
for i in $(MODULES); do make -C$$i clean; done
|
||||
|
||||
|
||||
|
|
|
@ -39,4 +39,5 @@ compile: $(UCI_DIR)/.prepared
|
|||
compile-all: compile
|
||||
|
||||
clean:
|
||||
rm -rf $(UCI_PATCHDIR)/series
|
||||
rm -rf $(UCI_DIR) $(UCI_FILE)
|
||||
|
|
|
@ -41,4 +41,5 @@ host-install: host-compile
|
|||
cp src/$(TPL_PO2LMO) ../../build/$(TPL_PO2LMO)
|
||||
|
||||
host-clean:
|
||||
rm -f src/$(TPL_PO2LMO)
|
||||
rm -f ../../build/$(TPL_PO2LMO)
|
||||
|
|
Loading…
Reference in a new issue