Creation of a tags file with the ctags tool.
This commit is contained in:
parent
07f1269302
commit
db9692d022
|
@ -146,6 +146,9 @@ crosstest:: $(TESTSUBDIRS:%=%/__crosstest__)
|
||||||
TAGS etags:
|
TAGS etags:
|
||||||
etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
|
etags `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
|
||||||
|
|
||||||
|
tags ctags:
|
||||||
|
ctags --c-types=+px `find $(TOPSRCDIR) -name '*.[ch]' -a -not -name '*.spec.c' -a -not -name '*.glue.c' -a -not -name '*.dbg.c' -print`
|
||||||
|
|
||||||
manpages:
|
manpages:
|
||||||
$(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w
|
$(MKINSTALLDIRS) $(TOPOBJDIR)/documentation/man3w
|
||||||
for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
|
for i in $(SUBDIRS); do (cd $$i && $(MAKE) man); done
|
||||||
|
@ -158,7 +161,7 @@ clean::
|
||||||
$(RM) wine
|
$(RM) wine
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
$(RM) config.* configure.lineno TAGS Make.rules dlls/Makedll.rules dlls/Maketest.rules programs/Makeprog.rules include/config.h
|
$(RM) config.* configure.lineno TAGS tags Make.rules dlls/Makedll.rules dlls/Maketest.rules programs/Makeprog.rules include/config.h
|
||||||
$(RM) -r autom4te.cache
|
$(RM) -r autom4te.cache
|
||||||
$(RM) `find . \( -name Makefile -o -size 0 \) -print`
|
$(RM) `find . \( -name Makefile -o -size 0 \) -print`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue