diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-02-12 02:43:37 +0000 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-02-12 02:43:37 +0000 |
commit | 4a433b88fd8f054547157f26d99a3e9fced54d8c (patch) | |
tree | 0f91a5c8d33bd461e6b234637d26ba95cb6f7c1a /openwrt/Makefile | |
parent | b3f3c13e0667852756b3b2dc23e10060adde0d49 (diff) | |
download | mtk-20170518-4a433b88fd8f054547157f26d99a3e9fced54d8c.zip mtk-20170518-4a433b88fd8f054547157f26d99a3e9fced54d8c.tar.gz mtk-20170518-4a433b88fd8f054547157f26d99a3e9fced54d8c.tar.bz2 |
make clean should remove openwrt-images
SVN-Revision: 237
Diffstat (limited to 'openwrt/Makefile')
-rw-r--r-- | openwrt/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/Makefile b/openwrt/Makefile index 81ecc43..008117d 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -119,7 +119,8 @@ source: $(TARGETS_SOURCE) # ############################################################# clean: - rm -rf $(BUILD_DIR) $(IMAGE).* + rm -rf $(BUILD_DIR) + -rm -f openwrt-* @$(MAKE) -C $(CONFIG) clean distclean: clean @@ -180,7 +181,7 @@ defconfig: $(CONFIG)/conf # Cleanup and misc junk # ############################################################# -clean: +clean: @$(MAKE) -C $(CONFIG) clean distclean: clean |