X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FMicrosoft.Build.Engine%2FMakefile;h=d46bf87bf1378c9e1bd64edc5e9d27a7161757e7;hb=e0e0608e20ce7bc9db2766ece89080fd7307cbf3;hp=b3804bf09c2bebe5b149d65e76dabeab20af6e11;hpb=b146bfdd363e74441de5ed8d1a805491cc30bb7c;p=mono.git diff --git a/mcs/class/Microsoft.Build.Engine/Makefile b/mcs/class/Microsoft.Build.Engine/Makefile index b3804bf09c2..d46bf87bf13 100644 --- a/mcs/class/Microsoft.Build.Engine/Makefile +++ b/mcs/class/Microsoft.Build.Engine/Makefile @@ -3,6 +3,14 @@ SUBDIRS = include ../../build/rules.make LIBRARY = Microsoft.Build.Engine.dll + +ifeq (1.0, $(FRAMEWORK_VERSION)) +LIBRARY_NAME = dummy-Microsoft.Build.Engine.dll +NO_INSTALL = yes +NO_TEST = yes +NO_SIGN_ASSEMBLY = yes +endif + LIB_MCS_FLAGS = \ /r:$(corlib) \ /r:System.dll \ @@ -10,4 +18,17 @@ LIB_MCS_FLAGS = \ /r:Microsoft.Build.Framework.dll \ /r:Microsoft.Build.Utilities.dll +TEST_MCS_FLAGS = \ + /r:Microsoft.Build.Framework.dll \ + /r:Microsoft.Build.Utilities.dll + +EXTRA_DISTFILES = \ + Test/resources/TestTasks.cs \ + Test/resources/*.*proj + +Test/resources/TestTasks.dll: Test/resources/TestTasks.cs + $(CSCOMPILE) Test/resources/TestTasks.cs /r:Microsoft.Build.Framework.dll /r:Microsoft.Build.Utilities.dll /target:library + +test-local: Test/resources/TestTasks.dll + include ../../build/library.make