add several Makefile targets to redirect to waf

This commit is contained in:
Josh Holtrop 2018-01-29 16:13:36 -05:00
parent 4a16e49672
commit 8777e3f758

View File

@ -1,2 +1,19 @@
all: .PHONY: build
./waf build build:
./waf "$@"
.PHONY: distclean
distclean:
./waf "$@"
.PHONY: clean
clean:
./waf "$@"
.PHONY: install
install:
./waf "$@"
.PHONY: uninstall
uninstall:
./waf "$@"