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
path: root/web
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2006-05-10 09:25:40 +0400
committerAtsushi Eno <atsushieno@gmail.com>2006-05-10 09:25:40 +0400
commit0601d4b556e2cc5dd74922d52e48b08545a12940 (patch)
tree6fab480fad068d54717fc364a054729e7970510d /web
parent3105f9d8fe6a468d11bab553071350d55ffd5ed0 (diff)
handle 2.0 with simply "make PROFILE=net_2_0".
svn path=/trunk/mono/; revision=60487
Diffstat (limited to 'web')
-rw-r--r--web/web/makefile18
1 files changed, 15 insertions, 3 deletions
diff --git a/web/web/makefile b/web/web/makefile
index c2928dfe45e..723b994d033 100644
--- a/web/web/makefile
+++ b/web/web/makefile
@@ -81,7 +81,7 @@ OBJECTS= \
deploy/xml-classes.html \
deploy/class-library.html \
deploy/classlib-doc.html \
- deploy/class-status.html \
+ deploy/class-status.html \
deploy/class-status-mscorlib.html \
deploy/class-status-System.html \
deploy/class-status-System.Xml.html \
@@ -102,7 +102,19 @@ OBJECTS= \
deploy/class-status-System.EnterpriseServices.html \
deploy/class-status-System.Runtime.Remoting.html \
deploy/class-status-cscompmgd.html \
- deploy/class-status-System.Runtime.Serialization.Formatters.Soap.html
+ deploy/class-status-System.Runtime.Serialization.Formatters.Soap.html \
+ deploy/class-status-Microsoft.Build.Framework.html \
+ deploy/class-status-Microsoft.Build.Engine.html \
+ deploy/class-status-Microsoft.Build.Utilities.html \
+ deploy/class-status-Microsoft.Build.Tasks.html
+
+NET_2_0_COMPARES = \
+ deploy/class-status-System.Configuration.html
+
+ifeq ($(PROFILE),net_2_0)
+ OBJECTS += $(NET_2_0_COMPARES)
+endif
+
HTML_SOURCES = ../mono-roadmap.html
@@ -181,7 +193,7 @@ src/%.html.in: src/%.xml transform.exe $(CORCOMPARE)/mono-api.xsl
.PRECIOUS: infos/%.xml
-infos/%.xml: ../../../mcs/class/lib/default/%.dll $(CORCOMPARE)/mono-api-info.exe
+infos/%.xml: ../../../mcs/class/lib/$(PROFILE)/%.dll $(CORCOMPARE)/mono-api-info.exe
$(RUN_MONO) $(CORCOMPARE)/mono-api-info.exe $(notdir $(basename $<)) > $@ || (rm -f $@ && exit 1)
.PRECIOUS: src/%.xml