diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-05-15 23:17:25 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-05-15 23:17:25 +0000 |
commit | 83058ab95bc1eab72235a10c5fa4125b51929d5e (patch) | |
tree | 0e4d4729d569c5f9854c98e43545a94584a4ac64 | |
parent | 76c0f7b271cc54e219b188ccec33fef9e5501e3a (diff) |
Add missing path to find invocation for tags/TAGS creation.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29310 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -982,10 +982,10 @@ doxygen: doxygen DOCS/tech/Doxyfile TAGS: - rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs etags -a + rm -f $@; find . -name '*.[chS]' -o -name '*.asm' | xargs etags -a tags: - rm -f $@; find -name '*.[chS]' -o -name '*.asm' | xargs ctags -a + rm -f $@; find . -name '*.[chS]' -o -name '*.asm' | xargs ctags -a |