Makefile 132 Bytes
Newer Older
Matteo's avatar
update  
Matteo committed
1
2
3
4
5
6
7
8
9
10
11
12
13
build:
	cmake -S . -B build
	cmake --build build

test:
	cd build && ctest

clean:
	rm -rf build
	rm -rf bin

run:
	./bin/$(TARGET)