Skip to content

Commit

Permalink
Fix list of files in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Feb 21, 2015
1 parent 040d77f commit ab48ab0
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions Makefile
Expand Up @@ -3,7 +3,7 @@
### USER EDITABLE VARS - can be passed as command-line options ###

# path to PHP executable, preferably CLI version
PHP=/usr/local/bin/php
PHP=php

# path were xmlrpc lib files will be copied to
PHPINCLUDEDIR=/usr/local/lib/php
Expand All @@ -23,17 +23,18 @@ DOS2UNIX=dos2unix
# on unix shells lasts char should be \\2/g )
export VERSION=$(shell grep -E "\$GLOBALS *\[ *'xmlrpcVersion' *\] *= *'" lib/xmlrpc.inc | sed -r s/"(.*= *' *)([0-9a-zA-Z.-]+)(.*)"/\2/g )

LIBFILES=lib/xmlrpc.inc lib/xmlrpcs.inc lib/xmlrpc_wrappers.inc
LIBFILES=lib/xmlrpc.inc lib/xmlrpcs.inc lib/xmlrpc_wrappers.inc \
src/*.php src/Helper/*.php

EXTRAFILES=extras/test.pl \
extras/test.py \
extras/rsakey.pem \
extras/workspace.testPhpServer.fttb

DEMOFILES=demo/vardemo.php \
demo/demo1.txt \
demo/demo2.txt \
demo/demo3.txt
demo/demo1.xml \
demo/demo2.xml \
demo/demo3.xml

DEMOSFILES=demo/server/discuss.php \
demo/server/server.php \
Expand All @@ -50,11 +51,12 @@ DEMOCFILES=demo/client/agesort.php \
demo/client/zopetest.php

TESTFILES=test/testsuite.php \
test/benchmark.php \
test/parse_args.php \
test/phpunit.php \
test/verify_compat.php \
test/PHPUnit/*.php
tests/benchmark.php \
tests/parse_args.php \
test/InvalidHostTest.php \
test/LocalHostTest.php \
test/ParsingBugsTest.php \
tests/verify_compat.php

INFOFILES=Changelog \
Makefile \
Expand Down

0 comments on commit ab48ab0

Please sign in to comment.