Makefile: Use 'git ls-files' instead of the deprecated 'git-ls-files' form.

This commit is contained in:
Alexandre Julliard 2008-07-07 12:17:00 +02:00
parent c0ebae42f1
commit e43004ac40
1 changed files with 2 additions and 2 deletions

View File

@ -141,11 +141,11 @@ $(TESTSUBDIRS:%=%/__crosstest__): tools include
TAGS etags: TAGS etags:
$(RM) TAGS $(RM) TAGS
(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs etags -a (test -d .git && git ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs etags -a
tags ctags: tags ctags:
$(RM) tags $(RM) tags
(test -d .git && git-ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs ctags -a (test -d .git && git ls-files '*.[chly]' '*.idl' || find -L $(TOPSRCDIR) -name '*.[ch]' -print) | xargs ctags -a
manpages htmlpages sgmlpages: dummy manpages htmlpages sgmlpages: dummy
@cd documentation && $(MAKE) $@ @cd documentation && $(MAKE) $@