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

makefile.gnu « Test « System.Configuration.Install « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb4566ef72a46bdcae41e65e72f68b518401fbeb (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
27
topdir = ../../..

LIBRARY = system_configuration_install_linux_test.dll

LIB_LIST = system_configuration_install_linux_test.args
LIB_FLAGS =     \
                -r $(topdir)/class/lib/corlib.dll \
                -r $(topdir)/class/lib/System.dll \
                -r $(topdir)/nunit20/NUnit.Framework.dll

ifdef SUBDIR
USE_SOURCE_RULES=1
SOURCES_INCLUDE=./$(SUBDIR)/*.cs
SOURCES_EXCLUDE=_DUMMY_
endif

include $(topdir)/class/library.make

NUNITCONSOLE=$(topdir)/nunit20/nunit-console.exe
MONO_PATH = $(topdir)/nunit20:.

test: $(LIBRARY) run_test

.PHONY: run_test

run_test:
	-MONO_PATH=$(MONO_PATH) mono --debug $(NUNITCONSOLE) $(LIBRARY)