breakhack/Makefile

20 lines
208 B
Makefile
Raw Normal View History

all:
@make -sC build
.PHONY: all
clean:
@make clean -sC build
.PHONY: clean
test:
@make test -sC build
.PHONY: test
2018-01-31 09:15:33 +01:00
run: $(all)
@./build/breakhack
.PHONY: run
2018-03-12 14:55:09 +01:00
lint:
@make lint -sC build
.PHONY: lint