From 40c6129c91ff8ce398994ab1ee74050d159d59bd Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 24 May 2002 09:33:37 +0000 Subject: fixed the clean target, also made two separate clean targets in case you ever wanna clean just one of them git-svn-id: svn://svn.rockbox.org/rockbox/trunk@686 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'tools/configure') diff --git a/tools/configure b/tools/configure index ef592cf2ad..37d027e1f7 100755 --- a/tools/configure +++ b/tools/configure @@ -153,9 +153,14 @@ firmware: apps: make -C \$(APPSDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR) +clean-firmware: + make -C \$(FIRMDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) clean + +clean-apps: + make -C \$(APPSDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) clean + clean: - make -C \$(APPSDIR) clean - make -C \$(FIRMDIR) clean + make clean-firmware clean-apps EOF -- cgit v1.2.3