mirror of
https://github.com/pstrueb/piper.git
synced 2026-05-05 21:28:02 +00:00
11 lines
193 B
Makefile
11 lines
193 B
Makefile
.PHONY: clean
|
|
|
|
all:
|
|
cmake -Bbuild -DCMAKE_INSTALL_PREFIX=install
|
|
cmake --build build --config Release
|
|
cd build && ctest --config Release
|
|
cmake --install build
|
|
|
|
clean:
|
|
rm -rf build install
|