mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-20 05:18:17 +08:00
use make instead of lots of files
This commit is contained in:
22
Makefile
Normal file
22
Makefile
Normal file
@ -0,0 +1,22 @@
|
||||
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
|
Reference in New Issue
Block a user