Update of /cvsroot/pgsqlclient/pgsqlclient_10
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10813
Modified Files:
makefile
Log Message:
Added changes for build directly against the Mono.Security.dll assembly
Index: makefile
===================================================================
RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/makefile,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** makefile 8 Feb 2004 22:24:37 -0000 1.11
--- makefile 9 Feb 2004 16:24:14 -0000 1.12
***************
*** 1,7 ****
- TLS = Mono.Security.Tls.dll
LIBRARY = PostgreSql.Data.PgSqlClient.dll
NUNIT_SUITE = PostgreSql.Data.PgSqlClient.UnitTests.dll
! all: ${TLS} $(LIBRARY) $(NUNIT_SUITE) install clean
CSC = mcs
--- 1,6 ----
LIBRARY = PostgreSql.Data.PgSqlClient.dll
NUNIT_SUITE = PostgreSql.Data.PgSqlClient.UnitTests.dll
! all: $(LIBRARY) $(NUNIT_SUITE) install clean
CSC = mcs
***************
*** 20,24 ****
RECURSE_TESTS = -recurse:./PostgreSql.Data.PgSqlClient.UnitTests/source/*.cs
! # COnfiguration files
NUNIT_CONFIG=./PostgreSql.Data.PgSqlClient.UnitTests/PostgreSql.Data.PgSqlClient.UnitTests.dll.config
--- 19,23 ----
RECURSE_TESTS = -recurse:./PostgreSql.Data.PgSqlClient.UnitTests/source/*.cs
! # Configuration files
NUNIT_CONFIG=./PostgreSql.Data.PgSqlClient.UnitTests/PostgreSql.Data.PgSqlClient.UnitTests.dll.config
***************
*** 26,34 ****
DEFINE = -define:_DEBUG
- Mono.Security.Tls.dll:
- $(CSC) -target:library -unsafe -out:$(TLS) $(LD_BASIC_FLAGS) $(DEFINE) $(RECURSE_TLS)
-
PostgreSql.Data.PgSqlClient.dll:
! $(CSC) -target:library -out:$(LIBRARY) $(LD_FLAGS) -reference:Mono.Security.Tls.dll $(DEFINE) $(TOOL_RESOURCES) $(RECURSE_SOURCE)
PostgreSql.Data.PgSqlClient.UnitTests.dll:
--- 25,30 ----
DEFINE = -define:_DEBUG
PostgreSql.Data.PgSqlClient.dll:
! $(CSC) -target:library -out:$(LIBRARY) $(LD_FLAGS) -reference:Mono.Security.dll $(DEFINE) $(TOOL_RESOURCES) $(RECURSE_SOURCE)
PostgreSql.Data.PgSqlClient.UnitTests.dll:
***************
*** 38,42 ****
rm -rf build
mkdir -p build
- $(COPY) $(TLS) ./build
$(COPY) $(LIBRARY) ./build
$(COPY) $(NUNIT_SUITE) ./build
--- 34,37 ----
***************
*** 44,48 ****
clean:
- rm $(TLS)
rm $(LIBRARY)
! rm ${NUNIT_SUITE}
\ No newline at end of file
--- 39,42 ----
clean:
rm $(LIBRARY)
! rm ${NUNIT_SUITE}
|