mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 17:02:50 +08:00
23 lines
498 B
Makefile
23 lines
498 B
Makefile
NAME ?= ocelot
|
|
|
|
build:
|
|
./build.sh
|
|
|
|
build_and_release_unstable:
|
|
./build.ps1 -target BuildAndReleaseUnstable && exit $LASTEXITCODE
|
|
|
|
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
|