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

xbuild.make « xbuild « tools « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e17dcb2b4538128157ad40dc3a9b8b4edd19ccbe (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
28
29
ifneq (2.0, $(XBUILD_VERSION))
NAME_SUFFIX = .v$(XBUILD_VERSION)
endif

ifeq (14.0, $(XBUILD_VERSION))
NAME_SUFFIX = .Core
endif

XBUILD_FRAMEWORK := $(topdir)/class/lib/$(PROFILE)/Microsoft.Build.Framework.dll
XBUILD_ENGINE := $(topdir)/class/lib/$(PROFILE)/Microsoft.Build.Engine.dll
XBUILD_UTILITIES := $(topdir)/class/lib/$(PROFILE)/Microsoft.Build.Utilities$(NAME_SUFFIX).dll
XBUILD_TASKS := $(topdir)/class/lib/$(PROFILE)/Mono.XBuild.Tasks.dll

XBUILD_ASSEMBLY_VERSION = $(XBUILD_VERSION).0.0

XBUILD_BIN_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)

ifneq (2.0, $(XBUILD_VERSION))
ifneq (3.5, $(XBUILD_VERSION))
ifneq (4.0, $(XBUILD_VERSION))

XBUILD_BIN_DIR = $(mono_libdir)/mono/xbuild/$(XBUILD_VERSION)/bin

PROGRAM_INSTALL_DIR = $(XBUILD_BIN_DIR)
LIBRARY_PACKAGE = xbuild/$(XBUILD_VERSION)/bin

endif
endif
endif