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:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-07-14 15:38:40 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-07-14 15:38:40 +0400
commit3f761fefe47213af1301315e2aca06a792d706cc (patch)
tree64e4512476c90c3fc6207a30cfb9f883a6c72ca1 /mcs/class/Mono.Data.SybaseClient
parentf6574c38ac9619e9a69b60ce39288c38ff1aa5e7 (diff)
New build system from Peter Williams (peter@newton.cx)
svn path=/trunk/mcs/; revision=16195
Diffstat (limited to 'mcs/class/Mono.Data.SybaseClient')
-rw-r--r--mcs/class/Mono.Data.SybaseClient/Makefile11
-rw-r--r--mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseClient.build44
-rw-r--r--mcs/class/Mono.Data.SybaseClient/makefile.gnu16
3 files changed, 11 insertions, 60 deletions
diff --git a/mcs/class/Mono.Data.SybaseClient/Makefile b/mcs/class/Mono.Data.SybaseClient/Makefile
new file mode 100644
index 00000000000..6c448a50695
--- /dev/null
+++ b/mcs/class/Mono.Data.SybaseClient/Makefile
@@ -0,0 +1,11 @@
+thisdir = class/Mono.Data.SybaseClient
+SUBDIRS =
+include ../../build/rules.make
+
+LIBRARY = Mono.Data.SybaseClient.dll
+LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /r:System.Xml.dll \
+ /r:System.EnterpriseServices.dll /r:System.Data.dll \
+ /r:Mono.Data.Tds.dll
+NO_TEST = yes
+
+include ../../build/library.make
diff --git a/mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseClient.build b/mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseClient.build
deleted file mode 100644
index 56b8311df16..00000000000
--- a/mcs/class/Mono.Data.SybaseClient/Mono.Data.SybaseClient.build
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-
-<!-- NAnt build file for Mono.Data.SybaseClient.dll -->
-
-<project name="Mono.Data.SybaseClient" default="build">
- <property name="debug" value="false"/>
-
- <target name="build">
- <csc target="library" output="../lib/Mono.Data.SybaseClient.dll" debug="${debug}">
- <arg value="/nowarn:1595"/>
- <arg value="/nowarn:0067"/>
- <arg value="/nowarn:0109"/>
- <arg value="/nowarn:0169"/>
- <arg value="/nowarn:0679"/>
- <arg value="/nowarn:0649"/>
- <arg value="/unsafe"/>
- <arg value="/noconfig"/>
- <arg value="/r:System.dll"/>
- <arg value="/r:System.Data.dll"/>
- <arg value="/r:System.EnterpriseServices.dll"/>
- <arg value="/r:System.Xml.dll"/>
- <arg value="/r:../lib/Mono.Data.Tds.dll"/>
- <sources>
- <includes name="**/*.cs"/>
- <excludes name="Test/**"/>
- </sources>
- <references>
- <includes name="../lib/corlib.dll"/>
- <includes name="../lib/System.dll"/>
- <includes name="../lib/System.Data.dll"/>
- <includes name="../lib/System.EnterpriseServices.dll"/>
- <includes name="../lib/System.Xml.dll"/>
- <includes name="../lib/Mono.Data.Tds.dll"/>
- </references>
- </csc>
- <copy file="../lib/Mono.Data.SybaseClient.dll" tofile="Test/Mono.Data.SybaseClient.dll"/>
- </target>
- <target name="test" depends="build">
- <nant basedir="Test" target="test"/>
- </target>
- <target name="clean">
- <delete file="../lib/Mono.Data.SybaseClient.dll" failonerror="false"/>
- </target>
-</project>
diff --git a/mcs/class/Mono.Data.SybaseClient/makefile.gnu b/mcs/class/Mono.Data.SybaseClient/makefile.gnu
deleted file mode 100644
index 97d87331e04..00000000000
--- a/mcs/class/Mono.Data.SybaseClient/makefile.gnu
+++ /dev/null
@@ -1,16 +0,0 @@
-topdir = ../..
-
-LIBRARY = $(topdir)/class/lib/Mono.Data.SybaseClient.dll
-
-LIB_LIST = list
-LIB_FLAGS = -r corlib -r System -r System.Xml -r System.EnterpriseServices -r System.Data -r Mono.Data.Tds
-
-SOURCES_INCLUDE=*.cs
-SOURCES_EXCLUDE=\
- ./Test* \
- *TestGDA.cs \
- ./System.Xml*
-
-export MONO_PATH_PREFIX = $(topdir)/class/lib:
-
-include $(topdir)/class/library.make