cxl/Makefile

20 lines
203 B
Makefile

.PHONY: build
build:
./waf build
.PHONY: clean
clean:
./waf clean
.PHONY: install
install:
./waf install
.PHONY: uninstall
uninstall:
./waf uninstall
.PHONY: test
test: build
@(cd tests; rspec)