15 lines
284 B
Makefile
15 lines
284 B
Makefile
build:
|
|
dotnet build -c Release
|
|
make -C speech2 -j$(nproc)
|
|
|
|
build-debug:
|
|
dotnet build -c Debug
|
|
make -C speech2 CONFIG=Debug -j$(nproc)
|
|
|
|
clean:
|
|
rm -rf SAPIServer/bin SAPIServer/obj
|
|
make -C speech2 clean
|
|
|
|
|
|
format:
|
|
cd SAPIServer; for f in *.cs; do clang-format -i $f; done; cd ..;
|