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:
authorDaniel Morgan <monodanmorg@yahoo.com>2003-01-28 21:42:47 +0300
committerDaniel Morgan <monodanmorg@yahoo.com>2003-01-28 21:42:47 +0300
commitaf70c73dcf064034193d34ec04718c82f15b2cdd (patch)
treecd91eba21f86d87e04dafa73999dc5c89e709095 /mcs/class/Npgsql/Makefile
parent5d77c9903f3b582ce17e7bd40e16134b43051993 (diff)
2003-01-28 Daniel Morgan <danmorg@sc.rr.com>
* added the Npgsql (Npgsql is a .Net Data Provider for PostgreSQL) from http://gborg.postgresql.org/project/npgsql/projdisplay.php by adding the following files and directories to the mcs module in mono-cvs.ximian.com at mcs/class: Npgsql (directory) ChangeLog Makefile Npgsql.build RELEASENOTES.txt TODO.txt makefile.gnu LICENSE.txt README.txt STATUS.txt list Npgsql/Npgsql (directory) Npgsql/AssemblyInfo.cs Npgsql/NpgsqlAsciiRow.cs Npgsql/NpgsqlBackEndKeyData.cs Npgsql/NpgsqlClosedState.cs Npgsql/NpgsqlCommand.cs Npgsql/NpgsqlConnectedState.cs Npgsql/NpgsqlConnection.cs Npgsql/NpgsqlConnector.cs Npgsql/NpgsqlConnectorPool.cs Npgsql/NpgsqlDataAdapter.cs Npgsql/NpgsqlDataReader.cs Npgsql/NpgsqlEventLog.cs Npgsql/NpgsqlException.cs Npgsql/NpgsqlMediator.cs Npgsql/NpgsqlMessageTypes.cs Npgsql/NpgsqlParameter.cs Npgsql/NpgsqlParameterCollection.cs Npgsql/NpgsqlPasswordPacket.cs Npgsql/NpgsqlQuery.cs Npgsql/NpgsqlReadyState.cs Npgsql/NpgsqlResultSet.cs Npgsql/NpgsqlRowDescription.cs Npgsql/NpgsqlStartupPacket.cs Npgsql/NpgsqlStartupState.cs Npgsql/NpgsqlState.cs Npgsql/NpgsqlTransaction.cs Npgsql/PGUtil.cs svn path=/trunk/mcs/; revision=11000
Diffstat (limited to 'mcs/class/Npgsql/Makefile')
-rwxr-xr-xmcs/class/Npgsql/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/mcs/class/Npgsql/Makefile b/mcs/class/Npgsql/Makefile
new file mode 100755
index 00000000000..1a49f9cb75b
--- /dev/null
+++ b/mcs/class/Npgsql/Makefile
@@ -0,0 +1,41 @@
+# Makefile
+#
+# Copyright (C) 2002 The Npgsql Development Team
+# npgsql-general@gborg.postgresql.org
+# http://gborg.postgresql.org/project/npgsql/projdisplay.php
+#
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+NPGSQL_LIB=Npgsql.dll
+# Allow compiling under Cygwin
+ifeq ($(OS),"Windows_NT")
+ CC=csc.exe
+ LDFLAGS=/r:System.Data.dll /target:library /out:$(NPGSQL_LIB)
+else
+ CC=mcs
+ LDFLAGS=-r /usr/lib/System.Data.dll --target library -o $(NPGSQL_LIB)
+endif
+CVS2CL=cvs2cl.pl
+OBJECTS:=$(shell ls *.cs)
+
+all: $(OBJECTS)
+ $(CC) $(LDFLAGS) $(OBJECTS)
+
+clean:
+ rm -rf $(NPGSQL_LIB) *~
+
+changelog:
+ $(CVS2CL)