diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-24 09:33:37 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-24 09:33:37 +0000 |
| commit | 40c6129c91ff8ce398994ab1ee74050d159d59bd (patch) | |
| tree | 3396926bcb0af4e98f3a9bfd3e7ca4ecbb9f08cd /tools | |
| parent | f6a09c67c70e163fb1704b375c42e07c6ae9d1b8 (diff) | |
| download | rockbox-40c6129c91ff8ce398994ab1ee74050d159d59bd.zip rockbox-40c6129c91ff8ce398994ab1ee74050d159d59bd.tar.gz rockbox-40c6129c91ff8ce398994ab1ee74050d159d59bd.tar.bz2 rockbox-40c6129c91ff8ce398994ab1ee74050d159d59bd.tar.xz | |
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')
| -rwxr-xr-x | tools/configure | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/configure b/tools/configure index ef592cf..37d027e 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 |