diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-12-04 03:04:37 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-12-04 03:04:37 +0000 |
commit | edc74f8cc3f810b03a39b5f98bd0c3908d5c9303 (patch) | |
tree | 21335f91bd5ab560bea2516cf24fea09f480cea1 | |
parent | b217ebd0e6f6e9a85f5e2980b43e2f05a9a8ebfd (diff) | |
download | upstream-edc74f8cc3f810b03a39b5f98bd0c3908d5c9303.tar.gz upstream-edc74f8cc3f810b03a39b5f98bd0c3908d5c9303.tar.bz2 upstream-edc74f8cc3f810b03a39b5f98bd0c3908d5c9303.zip |
fix make clean for unconfigured build trees
SVN-Revision: 9655
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | include/toplevel.mk | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -45,10 +45,10 @@ $(BUILD_DIR)/.prepared: Makefile clean: FORCE rm -rf $(BUILD_DIR) $(BIN_DIR) $(MAKE) target/linux/clean - rm -rf $(TMP_DIR) dirclean: clean rm -rf $(STAGING_DIR) $(STAGING_DIR_HOST) $(STAGING_DIR_TOOLCHAIN) $(TOOLCHAIN_DIR) $(BUILD_DIR_HOST) + rm -rf $(TMP_DIR) # check prerequisites before starting to build prereq: $(package/stamp-prereq) $(target/stamp-prereq) ; diff --git a/include/toplevel.mk b/include/toplevel.mk index 7930223650..040ff51249 100644 --- a/include/toplevel.mk +++ b/include/toplevel.mk @@ -98,7 +98,7 @@ download: .config FORCE $(MAKE) -j1 package/download $(MAKE) -j1 target/download -clean dirclean: +clean dirclean: .config @$(MAKE) $@ prereq:: .config |