summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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