From 85fc1e51a438bd72ca9851a7e64f233c3566f4ae Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Thu, 10 Oct 2002 10:03:57 +0000 Subject: [PATCH] 2002-10-10 Rodrigo Moya * makefile.gnu: added makefile for linux build. * list: updated to contain all missing files. * Mono.Data.MySql/makefile: removed unneeded makefile. svn path=/trunk/mcs/; revision=8133 --- mcs/class/Mono.Data.MySql/ChangeLog | 8 ++++++++ .../Mono.Data.MySql/Mono.Data.MySql/makefile | 20 ------------------- mcs/class/Mono.Data.MySql/list | 2 ++ mcs/class/Mono.Data.MySql/makefile.gnu | 14 +++++++++++++ 4 files changed, 24 insertions(+), 20 deletions(-) delete mode 100644 mcs/class/Mono.Data.MySql/Mono.Data.MySql/makefile create mode 100644 mcs/class/Mono.Data.MySql/makefile.gnu diff --git a/mcs/class/Mono.Data.MySql/ChangeLog b/mcs/class/Mono.Data.MySql/ChangeLog index 08cee727500..5ec7804abe0 100644 --- a/mcs/class/Mono.Data.MySql/ChangeLog +++ b/mcs/class/Mono.Data.MySql/ChangeLog @@ -1,3 +1,11 @@ +2002-10-10 Rodrigo Moya + + * makefile.gnu: added makefile for linux build. + + * list: updated to contain all missing files. + + * Mono.Data.MySql/makefile: removed unneeded makefile. + 2002-10-09 Daniel Morgan * Mono.Data.MySql/MySqlDataReader.cs: added diff --git a/mcs/class/Mono.Data.MySql/Mono.Data.MySql/makefile b/mcs/class/Mono.Data.MySql/Mono.Data.MySql/makefile deleted file mode 100644 index 78547a30cd3..00000000000 --- a/mcs/class/Mono.Data.MySql/Mono.Data.MySql/makefile +++ /dev/null @@ -1,20 +0,0 @@ - -SRCLIST = MySql.cs Test.cs - -.SUFFIXES: .exe .dll .cs .lex .txt - -#DEBUG = /debug - -.cs.dll: - csc $(DEBUG) /t:dll $*.cs - -.cs.exe: - csc $(DEBUG) /t:exe $*.cs - -all : Test.exe MySql.dll - -Test.exe : Test.cs MySql.dll - csc $(DEBUG) /t:exe /r:MySql.dll Test.cs - -MySql.dll : MySql.cs Field.cs - csc $(DEBUG) /t:library /doc:MySql.xml MySql.cs Field.cs diff --git a/mcs/class/Mono.Data.MySql/list b/mcs/class/Mono.Data.MySql/list index 1434f89e678..660e77ab033 100644 --- a/mcs/class/Mono.Data.MySql/list +++ b/mcs/class/Mono.Data.MySql/list @@ -3,3 +3,5 @@ Mono.Data.MySql/MySqlCommand.cs Mono.Data.MySql/MySqlConnection.cs Mono.Data.MySql/MySql.cs Mono.Data.MySql/TODOAttribute.cs +Mono.Data.MySql/MySqlDataReader.cs +Mono.Data.MySql/MySqlTypes.cs diff --git a/mcs/class/Mono.Data.MySql/makefile.gnu b/mcs/class/Mono.Data.MySql/makefile.gnu new file mode 100644 index 00000000000..9ab36d3e64f --- /dev/null +++ b/mcs/class/Mono.Data.MySql/makefile.gnu @@ -0,0 +1,14 @@ +topdir = ../.. + +LIBRARY = $(topdir)/class/lib/Mono.Data.MySql.dll + +LIB_LIST = list +LIB_FLAGS = -r corlib -r System -r System.Xml -r System.Data + +SOURCES_INCLUDE=*.cs +SOURCES_EXCLUDE=\ + ./Test* + +export MONO_PATH_PREFIX = $(topdir)/class/lib: + +include $(topdir)/class/library.make -- 2.25.1