From fe012b454a193c1f81ab8011ecd620750e5869f0 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Wed, 9 Mar 2011 21:42:08 +0000 Subject: Add a script and Makefile target to check for violations of the recently added standards for copyright and license comments. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24694 dc483132-0cff-0310-8789-dd5450dbe970 --- src/Makefile.in | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/Makefile.in') diff --git a/src/Makefile.in b/src/Makefile.in index d76797b87c..769f964a1e 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -749,6 +749,11 @@ mark-cstyle-bsd:: (cd $(top_srcdir) && $(FIND) $(BSDFILES) -print0 | $(XARGS) -0 \ $(PYTHON) util/krb5-mark-cstyle.py --cstyle=bsd) +check-copyright: + (cd $(top_srcdir) && \ + $(FIND) . \( -name '*.[ch]' -o -name '*.hin' \) -print0 | \ + $(XARGS) -0 python util/krb5-check-copyright.py) + doxygen:: if test "which doxygen" != ""; then \ doxygen; \ -- cgit