[Happydoc-checkins] CVS: HappyDoc Makefile,1.30,1.31
Brought to you by:
doughellmann,
krlosaqp
From: Doug H. <dou...@us...> - 2002-08-24 17:53:13
|
Update of /cvsroot/happydoc/HappyDoc In directory usw-pr-cvs1:/tmp/cvs-serv23825 Modified Files: Makefile Log Message: Limit TAGS file to actual program source, and skip the test programs. Index: Makefile =================================================================== RCS file: /cvsroot/happydoc/HappyDoc/Makefile,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** Makefile 8 Jun 2002 16:58:58 -0000 1.30 --- Makefile 24 Aug 2002 17:53:06 -0000 1.31 *************** *** 74,76 **** tags: ! find . -name '*.py' | etags -l auto --regex='/[ \t]*\def[ \t]+\([^ :(\t]+\)/\1/' - --- 74,76 ---- tags: ! find . -name '*.py' | grep -v TestCase | etags -l auto --regex='/[ \t]*\def[ \t]+\([^ :(\t]+\)/\1/' - |