summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-07-30 22:56:48 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-07-30 22:56:48 +0000
commit572876608a4a5f7032e441df68a6322cb7d568ed (patch)
tree747fc25162f1a497485faeed8db7ddaa8bc789a4 /Makefile
parent7cc617cd7ecba76109d7bde553d2f1cf1fcd8078 (diff)
downloadmaster-31e0f0ae-572876608a4a5f7032e441df68a6322cb7d568ed.tar.gz
master-31e0f0ae-572876608a4a5f7032e441df68a6322cb7d568ed.tar.bz2
master-31e0f0ae-572876608a4a5f7032e441df68a6322cb7d568ed.zip
fix make distclean
SVN-Revision: 8251
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 50cf8c985b..8a052674b4 100644
--- a/Makefile
+++ b/Makefile
@@ -42,8 +42,8 @@ clean: FORCE
dirclean: clean
rm -rf staging_dir_* toolchain_build_* tool_build
-distclean: dirclean config-clean symlinkclean docs/clean
- rm -rf dl
+distclean: dirclean
+ rm -rf dl .config*
# check prerequisites before starting to build
prereq: $(package/stamp-prereq) $(target/stamp-prereq) ;