Skip to content
Snippets Groups Projects
Makefile 93 B
Newer Older
Taddeus Kroes's avatar
Taddeus Kroes committed
all: test docs

test:
	phpunit

docs:
	phpdoc

clean:
	rm -rf build

.PHONY: test docs clean