Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « monobuild - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aff96e692eb2b7f7fd815ac0e838671328e4abb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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