59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
-rm -f cscope.out tags
reconfig:
@AUTOREMAKE@
tags:
ctags -R @srcdir@/src
ifeq (@HAVE_PROG_CSCOPE@, 1)
cscope -bR -s@srcdir@/src
endif
# Automatically reconfigure whenever an autosetup file or one of the
# make source files change.
#
# The "touch" is necessary to avoid a make loop due to a new upstream
# feature in autosetup (GH 0a71e3c3b7) which rewrites *.in outputs only
# if doing so will write different contents; otherwise, it leaves them
|
|
<
<
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
-rm -f cscope.out tags
reconfig:
@AUTOREMAKE@
tags:
ctags -R @srcdir@/src
@COLLECT_CSCOPE_DATA@
# Automatically reconfigure whenever an autosetup file or one of the
# make source files change.
#
# The "touch" is necessary to avoid a make loop due to a new upstream
# feature in autosetup (GH 0a71e3c3b7) which rewrites *.in outputs only
# if doing so will write different contents; otherwise, it leaves them
|