summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/configure9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index 4222b7950d..cebfe503ba 100755
--- a/tools/configure
+++ b/tools/configure
@@ -308,6 +308,15 @@ clean-apps:
308clean: 308clean:
309 \$(MAKE) clean-firmware clean-apps 309 \$(MAKE) clean-firmware clean-apps
310 310
311tags-firmware:
312 \$(MAKE) -C \$(FIRMDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) tags
313
314tags-apps:
315 \$(MAKE) -C \$(APPSDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) tags
316
317tags:
318 @rm -f TAGS
319 \$(MAKE) tags-firmware tags-apps
311EOF 320EOF
312 321
313echo "Created Makefile" 322echo "Created Makefile"