diff options
| -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 |