breakhack/Makefile

16 lines
166 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