SAPIServer/Justfile

16 lines
284 B
Makefile
Raw Normal View History

2024-07-17 21:38:27 -04:00
build:
dotnet build -c Release
2024-07-17 21:38:27 -04:00
make -C speech2 -j$(nproc)
build-debug:
dotnet build -c Debug
make -C speech2 CONFIG=Debug -j$(nproc)
2024-07-17 21:38:27 -04:00
clean:
rm -rf SAPIServer/bin SAPIServer/obj
make -C speech2 clean
2024-07-18 03:54:12 -04:00
format:
cd SAPIServer; for f in *.cs; do clang-format -i $f; done; cd ..;