breakhack/Makefile

12 lines
121 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