Removing legacy Makefile for bug 1295312

Change-Id: I11cb4c610f96440e45c5558384e5444ae22d9edd
This commit is contained in:
Sam Choi 2014-03-20 12:05:05 -07:00
parent 6fb21ee7ec
commit bd7e1255ce
1 changed files with 0 additions and 33 deletions

View File

@ -1,33 +0,0 @@
PROJ := 'openstack-php-client'
SRCDIR := src
TESTS := test/Tests
VERSION := 'DEV'
DATE := `date "+%Y%m%d"`
GROUP := 'deprecated'
docs :
@cat ./config.doxy | sed 's/-UNSTABLE%/$(VERSION)/' | doxygen -
test :
phpunit --color --exclude-group=deprecated $(TESTS);
fulltest:
phpunit --color --exclude-group=deprecated --bootstrap=test/bootstrap_curl.php $(TESTS);
phpunit --color --exclude-group=deprecated --bootstrap=test/bootstrap_phpstream.php $(TESTS)
test-group :
phpunit --color -v --group $(GROUP) $(TESTS)
test-verbose :
phpunit --color -v --exclude-group=deprecated $(TESTS) 2> curl-output.txt
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