0b380204a4
Former-commit-id: 7a84ce7d08c42c458ac8e74b27186ca863315d79
14 lines
329 B
Makefile
14 lines
329 B
Makefile
MSBUILD = msbuild
|
|
CONFIGURATION = Debug
|
|
|
|
all: build check
|
|
|
|
build:
|
|
$(MSBUILD) ../monolinker.sln /restore /p:Configuration=$(CONFIGURATION) /p:MonoBuild=true
|
|
|
|
clean:
|
|
$(MSBUILD) ../monolinker.sln /p:MonoBuild=true /t:clean
|
|
|
|
check:
|
|
$(MSBUILD) ../test/Mono.Linker.Tests/Mono.Linker.Tests.csproj /p:MonoBuild=true /t:RunTestsOnMono
|