Ocelot/Makefile
2020-01-14 09:50:10 +00:00

20 lines
402 B
Makefile

NAME ?= ocelot
build:
./build.sh
build_and_run_tests:
./build.ps1 -target RunTests && exit $LASTEXITCODE
release:
./build.ps1 -target Release && exit $LASTEXITCODE
run_acceptance_tests:
./build -target RunAcceptanceTests && exit $LASTEXITCODE
run_benchmarks:
./build.ps1 -target RunBenchmarkTests && exit $LASTEXITCODE
run_unit_tests:
./build.ps1 -target RunUnitTests && exit $LASTEXITCODE