diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-02-12 02:43:37 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-02-12 02:43:37 +0000 |
commit | 844425e1b010774989e7742cc89cfcb5d4328be3 (patch) | |
tree | 0f91a5c8d33bd461e6b234637d26ba95cb6f7c1a | |
parent | 93d10ad8bae27c708db664653d2fd573ce356f70 (diff) |
make clean should remove openwrt-images
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@237 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | openwrt/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/Makefile b/openwrt/Makefile index 81ecc43f8..008117dd7 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 |