... and Makefile ;-)
authorAtsushi Eno <atsushieno@gmail.com>
Fri, 22 Oct 2004 17:45:45 +0000 (17:45 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Fri, 22 Oct 2004 17:45:45 +0000 (17:45 -0000)
svn path=/trunk/mcs/; revision=35251

mcs/class/Mono.Xml.Ext/ChangeLog
mcs/class/Mono.Xml.Ext/Makefile [new file with mode: 0755]

index 46b2f010e711980956ae8ac8f5d04f95ae055748..8f3f1b2478352d522c0e9627923124783d9ddc3e 100644 (file)
@@ -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 (executable)
index 0000000..4ee0064
--- /dev/null
@@ -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