use make instead of lots of files

This commit is contained in:
TomPallister
2020-01-13 22:43:16 +00:00
parent fe60a97d27
commit ec7f0de562
13 changed files with 24 additions and 23 deletions

22
Makefile Normal file
View 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