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>2004-10-22 21:45:45 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-10-22 21:45:45 +0400
commit4a53309670be2edb856e874fa01e9de1be4e1a75 (patch)
tree07ed318a7f04211ac1b33170eb047c29809d5fc4 /mcs/class/Mono.Xml.Ext
parent5c832fd43903dd0b6cdb8071388951a3f300892c (diff)
... and Makefile ;-)
svn path=/trunk/mcs/; revision=35251
Diffstat (limited to 'mcs/class/Mono.Xml.Ext')
-rw-r--r--mcs/class/Mono.Xml.Ext/ChangeLog1
-rwxr-xr-xmcs/class/Mono.Xml.Ext/Makefile25
2 files changed, 26 insertions, 0 deletions
diff --git a/mcs/class/Mono.Xml.Ext/ChangeLog b/mcs/class/Mono.Xml.Ext/ChangeLog
index 46b2f010e71..8f3f1b24783 100644
--- a/mcs/class/Mono.Xml.Ext/ChangeLog
+++ b/mcs/class/Mono.Xml.Ext/ChangeLog
@@ -1,5 +1,6 @@
2004-10-22 Atsushi Enomoto <atsushi@ximian.com>
+ Makefile,
ChangeLog,
Mono.Xml.Ext.dll.sources: Initial Checkin.
diff --git a/mcs/class/Mono.Xml.Ext/Makefile b/mcs/class/Mono.Xml.Ext/Makefile
new file mode 100755
index 00000000000..4ee0064d802
--- /dev/null
+++ b/mcs/class/Mono.Xml.Ext/Makefile
@@ -0,0 +1,25 @@
+thisdir = class/Mono.Xml.Ext
+SUBDIRS =
+include ../../build/rules.make
+
+LIBRARY = Mono.Xml.Ext.dll
+LIBRARY_USE_INTERMEDIATE_FILE = yes
+
+ifeq ($(PROFILE),atomic)
+SCARY_LIB=
+else
+SCARY_LIB=/lib:$(prefix)/lib /noconfig
+endif
+
+LIB_MCS_FLAGS = $(SCARY_LIB) /unsafe /r:$(corlib) /r:System.dll /r:System.Xml.dll
+TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
+
+EXTRA_DISTFILES = \
+ Mono.Xml.XPath2/XQueryParser.jay
+
+Mono.Xml.XPath2/XQueryParser.cs: Mono.Xml.XPath2/XQueryParser.jay Mono.Xml.XPath2/skeleton-2.0.cs
+ $(topdir)/jay/jay -ct < Mono.Xml.XPath2/skeleton-2.0.cs $< >$@
+
+CLEAN_FILES = Mono.Xml.Ext.pdb Mono.Xml.XPath2/XQueryParser.cs y.output
+
+include ../../build/library.make