mirror of
https://github.com/rhasspy/piper
synced 2024-11-10 19:10:47 +00:00
14 lines
317 B
Makefile
14 lines
317 B
Makefile
.PHONY: clean docker
|
|
|
|
all:
|
|
cmake -Bbuild -DCMAKE_INSTALL_PREFIX=install
|
|
cmake --build build --config Release
|
|
cd build && ctest --config Release
|
|
cmake --install build
|
|
|
|
docker:
|
|
docker buildx build . --platform linux/amd64,linux/arm64,linux/arm/v7 --output 'type=local,dest=dist'
|
|
|
|
clean:
|
|
rm -rf build install dist
|