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

Makefile « sockethell « tools « Test « Mono.Security « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4494c3674c5973734bd5e260036f9db57c6a6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
thisdir = class/Mono.Security/Test/tools/sockethell
SUBDIRS = 
include ../../../../../build/rules.make

LOCAL_MCS_FLAGS = -r:System.dll -r:Mono.Security.dll -r:../../../../lib/default/nunit.framework.dll

all-local install-local uninstall-local:

test-local:

run-test-local: SocketHell.dll
	mono ../../../../lib/default/nunit-console.exe SocketHell.dll

clean-local:
	rm -f *.dll *.mdb *.pdb TestResult.xml

sources = SocketHell.cs

DISTFILES = $(sources)

dist-local: dist-default

all: SocketHell.dll

SocketHell.dll: SocketHell.cs
	$(CSCOMPILE) -target:library -out:$@ $^