summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-15 09:32:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-15 09:32:59 +0000
commitbc35ae3f5088259a352f0d25e76a7399d38b374a (patch)
treeb217495800dacd955530288d683a5b052f83a3d6 /tools
parentf769e5306fd5ac3265716fdec001111747279227 (diff)
downloadrockbox-bc35ae3f5088259a352f0d25e76a7399d38b374a.tar.gz
rockbox-bc35ae3f5088259a352f0d25e76a7399d38b374a.zip
Generates a 'tags' target in the toplevel makefile now, this is only
for target builds as of yet. More to come. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1753 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-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:
clean:
\$(MAKE) clean-firmware clean-apps
+tags-firmware:
+ \$(MAKE) -C \$(FIRMDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) tags
+
+tags-apps:
+ \$(MAKE) -C \$(APPSDIR) TARGET=\$(TARGET) OBJDIR=\$(THISDIR) tags
+
+tags:
+ @rm -f TAGS
+ \$(MAKE) tags-firmware tags-apps
EOF
echo "Created Makefile"