Fix list of files in makefile
authorgggeek <giunta.gaetano@gmail.com>
Sat, 21 Feb 2015 22:58:10 +0000 (22:58 +0000)
committergggeek <giunta.gaetano@gmail.com>
Sat, 21 Feb 2015 22:58:10 +0000 (22:58 +0000)
Makefile

index 4b4e4ef..c6d4985 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 ### USER EDITABLE VARS - can be passed as command-line options ###\r
 \r
 # path to PHP executable, preferably CLI version\r
-PHP=/usr/local/bin/php\r
+PHP=php\r
 \r
 # path were xmlrpc lib files will be copied to\r
 PHPINCLUDEDIR=/usr/local/lib/php\r
@@ -23,7 +23,8 @@ DOS2UNIX=dos2unix
 #   on unix shells lasts char should be \\2/g )\r
 export VERSION=$(shell grep -E "\$GLOBALS *\[ *'xmlrpcVersion' *\] *= *'" lib/xmlrpc.inc | sed -r s/"(.*= *' *)([0-9a-zA-Z.-]+)(.*)"/\2/g )\r
 \r
-LIBFILES=lib/xmlrpc.inc lib/xmlrpcs.inc lib/xmlrpc_wrappers.inc\r
+LIBFILES=lib/xmlrpc.inc lib/xmlrpcs.inc lib/xmlrpc_wrappers.inc \\r
+ src/*.php src/Helper/*.php\r
 \r
 EXTRAFILES=extras/test.pl \\r
  extras/test.py \\r
@@ -31,9 +32,9 @@ EXTRAFILES=extras/test.pl \
  extras/workspace.testPhpServer.fttb\r
 \r
 DEMOFILES=demo/vardemo.php \\r
- demo/demo1.txt \\r
- demo/demo2.txt \\r
- demo/demo3.txt\r
+ demo/demo1.xml \\r
+ demo/demo2.xml \\r
+ demo/demo3.xml\r
 \r
 DEMOSFILES=demo/server/discuss.php \\r
  demo/server/server.php \\r
@@ -50,11 +51,12 @@ DEMOCFILES=demo/client/agesort.php \
  demo/client/zopetest.php\r
 \r
 TESTFILES=test/testsuite.php \\r
- test/benchmark.php \\r
- test/parse_args.php \\r
- test/phpunit.php \\r
- test/verify_compat.php \\r
- test/PHPUnit/*.php\r
+ tests/benchmark.php \\r
+ tests/parse_args.php \\r
+ test/InvalidHostTest.php \\r
+ test/LocalHostTest.php \\r
+ test/ParsingBugsTest.php \\r
+ tests/verify_compat.php\r
 \r
 INFOFILES=Changelog \\r
  Makefile \\r