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: c5258a6936e904b4c35a2e64d4223b721ed62c37 (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)

clean:
	$(MSBUILD) ../monolinker.sln /t:clean

check:
	$(MSBUILD) ../test/Mono.Linker.Tests/Mono.Linker.Tests.csproj /t:RunTestsOnMono