breakhack/Makefile

20 lines
213 B
Makefile

all:
@make -sC _build
.PHONY: all
clean:
@make clean -sC _build
.PHONY: clean
test:
@make test -sC _build
.PHONY: test
run: $(all)
@./_build/breakhack
.PHONY: run
lint:
@make lint -sC _build
.PHONY: lint