goba            Fri Jan  4 11:14:27 2002 EDT

  Modified files:              
    /phpdoc     Makefile.in 
  Log:
  New script for checking phpdoc status, missing functions, and functions not in source
  
  
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.78 phpdoc/Makefile.in:1.79
--- phpdoc/Makefile.in:1.78     Fri Jan  4 07:47:45 2002
+++ phpdoc/Makefile.in  Fri Jan  4 11:14:26 2002
@@ -17,11 +17,12 @@
 #
 
 #
-# $Id: Makefile.in,v 1.78 2002/01/04 12:47:45 goba Exp $
+# $Id: Makefile.in,v 1.79 2002/01/04 16:14:26 goba Exp $
 #
 
 VPATH=@srcdir@
 srcdir=@srcdir@
+scriptdir=@srcdir@/scripts
 PHP_SOURCE=@PHP_SOURCE@
 LANG=@LANG@
 JADE=@JADE@ -wno-idref
@@ -96,7 +97,7 @@
        $(srcdir)/genfuncsummary $(PHP_SOURCE) > funcsummary.txt
 
 revcheck.html: FORCE
-       PHPDOCDIR=$(srcdir) php -f $(srcdir)/scripts/revcheck.php $(LANG) > 
revcheck.html
+       PHPDOCDIR=$(srcdir) php -f $(scriptdir)/revcheck.php $(LANG) > revcheck.html
 
 funcindex.xml: quickref.txt
        php -q -d short_tags=off $(srcdir)/genfuncindex.php quickref.txt @ENCODING@ > 
funcindex.xml
@@ -115,9 +116,9 @@
 manual-snapshot.tar.gz: @MANUAL@.html html/index.html @MANUAL@.rtf @MANUAL@.txt
        tar -cvzf $@ @MANUAL@.html html/*.html @MANUAL@.rtf @MANUAL@.txt
 
-status: checkdoc ./funclist.txt
-       ./checkdoc -s > status.txt
-       ./checkdoc -m > missing.txt
+status: ./funclist.txt
+       php -q $(scriptdir)/checkdoc.php > status.txt
+       php -q $(scriptdir)/checkdoc.php missing > missing.txt
 
 summary: ./funcsummary.txt
 


Reply via email to