From: Ken Hornstein Date: Wed, 2 Jan 2013 20:23:29 +0000 (-0500) Subject: Switch to using native automake rules for cscope. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/5e2dd33b21540169b4c5ff52980cfb2f5559e8c0?hp=--cc Switch to using native automake rules for cscope. --- 5e2dd33b21540169b4c5ff52980cfb2f5559e8c0 diff --git a/.gitignore b/.gitignore index 74b6aad3..0be1cc28 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,8 @@ /sbr/dtimep.c /cscope.files /cscope.out +/cscope.in.out +/cscope.po.out # Removed by distclean: .deps/ diff --git a/Makefile.am b/Makefile.am index c9bb3ee2..8307f17b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -97,7 +97,7 @@ clean-local: ## ## Stuff that should be cleaned via "make maintainer-clean" ## -MAINTAINERCLEANFILES = cscope.files cscope.out +MAINTAINERCLEANFILES = cscope.files cscope.out cscope.in.out cscope.po.out ## ## And our own superclean, to get everything left by maintainer-clean. @@ -594,14 +594,6 @@ rpm: dist -ba SPECS/nmh.spec .PHONY: rpm -## -## A target to build information needed by cscope -## -cscope: - echo "-I $(srcdir)/h -I $(srcdir)/sbr -I $(srcdir)/uip -I $(srcdir)/mts/smtp" > cscope.files - find $(srcdir) \( -name docs -prune \) -o \( -name \*.c -o -name \*.l \) -print | grep -v dtimep.c >> cscope.files -.PHONY: cscope - ## ## Use GNU gcov to find the coverage of the test suite.