diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-08-15 10:04:53 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-15 10:04:53 +0000 |
| commit | 5e38c071cbef516f72d9c5feab2e3d4b7602edea (patch) | |
| tree | 1a220724b0749fee432a5b85035d31c573b1c2ff | |
| parent | bc35ae3f5088259a352f0d25e76a7399d38b374a (diff) | |
| download | rockbox-5e38c071cbef516f72d9c5feab2e3d4b7602edea.zip rockbox-5e38c071cbef516f72d9c5feab2e3d4b7602edea.tar.gz rockbox-5e38c071cbef516f72d9c5feab2e3d4b7602edea.tar.bz2 rockbox-5e38c071cbef516f72d9c5feab2e3d4b7602edea.tar.xz | |
added tags target
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1754 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uisimulator/x11/Makefile b/uisimulator/x11/Makefile index 215fe66..cbb8aa9 100644 --- a/uisimulator/x11/Makefile +++ b/uisimulator/x11/Makefile @@ -49,6 +49,7 @@ LDFLAGS = -lX11 -lm -lXt -lXmu -lnsl # Use this for simulator-only files INCLUDES = -I. -I$(DRIVERS) -I$(COMMON) -I$(FIRMWAREDIR) -I$(APPDIR) -I$(RECDIR) +SRCDIRS = . $(DRIVERS) $(COMMON) $(FIRMWAREDIR) $(APPDIR) $(RECDIR) # The true Rockbox Applications should use this include path: APPINCLUDES = -I$(FIRMWAREDIR)/include $(INCLUDES) @@ -279,3 +280,7 @@ $(DEPS)/%.d: %.c [ -s $@ ] || rm -f $@' -include $(SRCS:%.c=$(DEPS)/%.d) + +tags: + @$(SHELL) -c 'for d in $(SRCDIRS); do { etags -o $(OBJDIR)/TAGS -a $$d/*.[ch]; }; done' + |