Files
piper/Makefile
Michael Hansen 9f3f906ea9 Test passing
2023-09-09 21:09:06 -05:00

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