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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2008-09-04 12:22:50 +0400
committerAtsushi Eno <atsushieno@gmail.com>2008-09-04 12:22:50 +0400
commit40885d70e5795b0c196598d283d5430e84e44763 (patch)
tree849deb5cf760a774280d6711131636ece2cb8cb6 /mcs/class/System.Web.Abstractions/Makefile
parent83a78ab159eb472cd6faf4c0d5432654fb834e42 (diff)
initial sys.web.abstractions checkin. Mostly stubs and wrappers.
svn path=/trunk/mcs/; revision=112253
Diffstat (limited to 'mcs/class/System.Web.Abstractions/Makefile')
-rw-r--r--mcs/class/System.Web.Abstractions/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/mcs/class/System.Web.Abstractions/Makefile b/mcs/class/System.Web.Abstractions/Makefile
new file mode 100644
index 00000000000..40c3905edeb
--- /dev/null
+++ b/mcs/class/System.Web.Abstractions/Makefile
@@ -0,0 +1,27 @@
+thisdir = class/System.Web.Abstractions
+SUBDIRS =
+include ../../build/rules.make
+
+LIBRARY = System.Web.Abstractions.dll
+LIB_MCS_FLAGS = \
+ /r:System.dll \
+ /r:System.Core.dll \
+ /r:System.Web.dll
+
+ifeq (2.0, $(FRAMEWORK_VERSION))
+# This is a .NET 3.5 only assembly, but built during the 2.0 build
+LIB_MCS_FLAGS += -d:NET_3_5
+endif
+
+TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
+
+EXTRA_DISTFILES =
+
+ifneq (net_2_0, $(PROFILE))
+LIBRARY_NAME = dummy-System.Web.Abstractions.dll
+NO_INSTALL = yes
+NO_SIGN_ASSEMBLY = yes
+NO_TEST = yes
+endif
+
+include ../../build/library.make