diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-08-15 09:32:59 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-15 09:32:59 +0000 |
| commit | bc35ae3f5088259a352f0d25e76a7399d38b374a (patch) | |
| tree | b217495800dacd955530288d683a5b052f83a3d6 /tools | |
| parent | f769e5306fd5ac3265716fdec001111747279227 (diff) | |
| download | rockbox-bc35ae3f5088259a352f0d25e76a7399d38b374a.zip rockbox-bc35ae3f5088259a352f0d25e76a7399d38b374a.tar.gz rockbox-bc35ae3f5088259a352f0d25e76a7399d38b374a.tar.bz2 rockbox-bc35ae3f5088259a352f0d25e76a7399d38b374a.tar.xz | |
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-x | tools/configure | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure index 4222b79..cebfe50 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" |