7 lines
78 B
Makefile
7 lines
78 B
Makefile
run: build
|
|
cmake --build build
|
|
build:
|
|
cmake -S . -B $@
|
|
clean:
|
|
rm -Rf build
|