diff options
author | Waldemar Brodkorb <wbx@openwrt.org> | 2005-02-12 02:43:37 +0000 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openwrt.org> | 2005-02-12 02:43:37 +0000 |
commit | df9d54dcb4ad8d7bcda61aa5097b91fed4192622 (patch) | |
tree | 6336123e5e536c01061530a8aea3fab41097e764 | |
parent | e6f8aa902272b24a883b58cc8588e92d35f29d91 (diff) | |
download | master-187ad058-df9d54dcb4ad8d7bcda61aa5097b91fed4192622.tar.gz master-187ad058-df9d54dcb4ad8d7bcda61aa5097b91fed4192622.tar.bz2 master-187ad058-df9d54dcb4ad8d7bcda61aa5097b91fed4192622.zip |
make clean should remove openwrt-images
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@237 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |