Files
ocserv/Makefile.am
Jason Cooper 992601bbd8 add cscope/ctags make targets
Newcomers to the code often use these tools to learn their way around.
Integrate them into the build so that we don't accidentally track their
files.

Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2013-02-26 18:33:05 +01:00

14 lines
207 B
Makefile

EXTRA_DIST = m4/lib-link.m4
SUBDIRS = gl libopts src doc
ACLOCAL_AMFLAGS = -I gl/m4 -I libopts/m4 -I m4
ctags:
find . -type f -name "*.[ch]*" | xargs @CTAGS@
cscope:
@CSCOPE@ -b -R
cref: ctags cscope