a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
thisdir = class/Microsoft.Build
|
|
SUBDIRS =
|
|
include ../../build/rules.make
|
|
|
|
XBUILD_DIR=$(topdir)/tools/xbuild
|
|
include $(XBUILD_DIR)/xbuild.make
|
|
|
|
LIBRARY = Microsoft.Build.dll
|
|
|
|
LIB_MCS_FLAGS = \
|
|
/r:$(corlib) \
|
|
/r:System.dll \
|
|
/r:System.Core.dll \
|
|
/r:System.Xml.dll \
|
|
/r:Microsoft.Build.Engine.dll \
|
|
/r:Microsoft.Build.Framework.dll \
|
|
/d:MICROSOFT_BUILD_DLL
|
|
|
|
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) \
|
|
/r:Microsoft.Build.Utilities.v4.0.dll
|
|
|
|
EXTRA_DISTFILES = \
|
|
Microsoft.Build.Internal/ExpressionParser.jay \
|
|
Test/FunctionalTestReferenceProject.csproj \
|
|
Test/FunctionalTestReferenceProject3.csproj \
|
|
Test/Microsoft.Build.Test.csproj \
|
|
Test/Microsoft.Build.csproj
|
|
|
|
EXPR_PARSER = Microsoft.Build.Internal/ExpressionParser
|
|
|
|
$(EXPR_PARSER).cs: $(EXPR_PARSER).jay $(topdir)/jay/skeleton.cs
|
|
(cd Microsoft.Build.Internal; $(topdir)/../jay/jay -ctv < $(topdir)/../jay/skeleton.cs ExpressionParser.jay > ExpressionParser.cs)
|
|
|
|
BUILT_SOURCES = $(EXPR_PARSER).cs
|
|
|
|
include ../../build/library.make
|
|
|
|
XBUILD_FRAMEWORK_FOLDERS_PATH=xbuild-testing
|
|
include $(XBUILD_DIR)/xbuild_test.make
|