summaryrefslogtreecommitdiff
path: root/Makefile
blob: d9cd914866447b10272dd33c80d4a6455e07f65b (plain)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: make_build
make_build:
	mkdir build && cd build && cmake .. && make

prerequisites: make_build

target: prerequisites

.PHONY: clean
clean:
	rm -rf build/