init
[pharext/pharext] / Makefile
1 #
2 # build bin/pharext
3 #
4
5 all: bin/pharext
6
7 bin/pharext: src/* src/pharext/*
8 php -d phar.readonly=0 build/create-phar.php
9 chmod +x $@
10
11 clean:
12 rm bin/pharext*
13
14 .PHONY: all clean
15