summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-24 09:33:37 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-24 09:33:37 +0000
commit40c6129c91ff8ce398994ab1ee74050d159d59bd (patch)
tree3396926bcb0af4e98f3a9bfd3e7ca4ecbb9f08cd /tools/configure
parentf6a09c67c70e163fb1704b375c42e07c6ae9d1b8 (diff)
downloadrockbox-40c6129c91ff8ce398994ab1ee74050d159d59bd.tar.gz
rockbox-40c6129c91ff8ce398994ab1ee74050d159d59bd.zip
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
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure9
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure
index ef592cf2ad..37d027e1f7 100755
--- a/tools/configure
+++ b/tools/configure
@@ -153,9 +153,14 @@ firmware:
153apps: 153apps:
154 make -C \$(APPSDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR) 154 make -C \$(APPSDIR) TARGET=\$(TARGET) \$(DEBUG) OBJDIR=\$(THISDIR)
155 155
156clean-firmware:
157 make -C \$(FIRMDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) clean
158
159clean-apps:
160 make -C \$(APPSDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) clean
161
156clean: 162clean:
157 make -C \$(APPSDIR) clean 163 make clean-firmware clean-apps
158 make -C \$(FIRMDIR) clean
159 164
160EOF 165EOF
161 166