2024-07-17 21:38:27 -04:00
|
|
|
build:
|
2024-07-18 03:56:02 -04:00
|
|
|
dotnet build -c Release
|
2024-07-17 21:38:27 -04:00
|
|
|
make -C speech2 -j$(nproc)
|
|
|
|
|
2024-07-18 03:56:02 -04:00
|
|
|
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 ..;
|