summaryrefslogtreecommitdiff
path: root/lib/querypath/Makefile
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-01-18 20:07:16 +0100
committeremkael <emkael@tlen.pl>2017-01-18 20:07:16 +0100
commit9a9c04512e5dcb77c7fe5d850e3f2a0250cc160e (patch)
treefed46b5f4c2ed3a050bb1a7ad7c6d0a3ea844d55 /lib/querypath/Makefile
parentc5bcf8f74fb80b7e163663845b0d6e35cabface3 (diff)
* Motor Sport Magazine feed provider
Diffstat (limited to 'lib/querypath/Makefile')
-rw-r--r--lib/querypath/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/querypath/Makefile b/lib/querypath/Makefile
new file mode 100644
index 0000000..7267813
--- /dev/null
+++ b/lib/querypath/Makefile
@@ -0,0 +1,30 @@
+PROJ := 'QueryPath'
+SRCDIR := src
+TESTS := test/Tests
+VERSION := 'DEV'
+DATE := `date "+%Y%m%d"`
+
+VFILES = src/HPCloud
+
+docs :
+ @cat ./config.doxy | sed 's/-UNSTABLE%/$(VERSION)/' | doxygen -
+
+test :
+ phpunit --verbose --color --exclude-group=deprecated $(TESTS);
+
+test-group :
+ phpunit --verbose --color --group=$(GROUP) $(TESTS);
+
+fulltest:
+ phpunit --color $(TESTS)
+
+lint : $(SRCDIR)
+ find $(SRCDIR) -iname *.php -exec php -l {} ';'
+
+dist: tar
+
+tar:
+ @echo $(PROJ)-$(VERSION)-$(DATE).tgz
+ # @tar -zcvf $(PROJ)-$(VERSION)-$(DATE).tgz $(SRCDIR)
+
+.PHONY: docs test dist tar lint