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

Makefile « PresentationFramework « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85ee60e45cf5b87dd09f6a2fa8636300c287f986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
thisdir = class/PresentationFramework
include ../../build/rules.make

LIBRARY = PresentationFramework.dll

LIB_MCS_FLAGS = -r:System.Xml.dll -r:WindowsBase.dll -r:System.dll
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -r:TestVocab.dll -r:System.dll
TEST_MONO_PATH = .

Test/XamlParser.cs: Test/TestVocab.dll

Test/TestVocab.dll: ../../tools/xamlc/demo/TestVocab/*.cs
	echo $(MONO_PATH)
	(cd ../../tools/xamlc/demo; make TestVocab.dll)
	cp ../../tools/xamlc/demo/TestVocab.dll Test/TestVocab.dll
	cp Test/TestVocab.dll TestVocab.dll

include ../../build/library.make