Commit 7f9f78ae authored by Alexandre Julliard's avatar Alexandre Julliard

makefile: Use git-ls-files if possible to build tags files.

parent 9b28bd0a
...@@ -132,10 +132,10 @@ $(TESTSUBDIRS:%=%/__crosstest__): tools include ...@@ -132,10 +132,10 @@ $(TESTSUBDIRS:%=%/__crosstest__): tools include
# Misc rules # Misc rules
TAGS etags: TAGS etags:
find -L $(TOPSRCDIR) -name '*.[ch]' -print | etags - (test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | etags -
tags ctags: tags ctags:
find -L $(TOPSRCDIR) -name '*.[ch]' -print | ctags --c-types=+px -L - (test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | ctags -
manpages htmlpages sgmlpages: dummy manpages htmlpages sgmlpages: dummy
@cd documentation && $(MAKE) $@ @cd documentation && $(MAKE) $@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment