From 90d5fbcd49d054fec49e478895e4ff7bed0192b1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 23 Sep 2004 07:14:14 +0000 Subject: [PATCH] Since 'php parserTests.php' is too long for my lazy fingers, added a Makefile. 'make test' to run the parser tests, 'make doc' to run phpdoc generation. --- maintenance/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 maintenance/Makefile diff --git a/maintenance/Makefile b/maintenance/Makefile new file mode 100644 index 0000000000..8ceeb797ad --- /dev/null +++ b/maintenance/Makefile @@ -0,0 +1,9 @@ +help: + # Run 'make test' to run the parser tests. + # Run 'make doc' to run the phpdoc generation. + +test: + php parserTests.php + +doc: + php mwdocgen.php --all -- 2.20.1