From ddea52aef646c8c67ee53ded47a8023caee1e75f Mon Sep 17 00:00:00 2001 From: Joe Shaw Date: Wed, 12 Jan 2005 22:34:28 +0000 Subject: 2005-01-12 Joe Shaw * mono/Makefile.am, mono/example/Makefile.am: Always build the dbus DLL with --debug. --- ChangeLog | 3 ++- mono/example/Makefile.am | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index b16bfb40..7a29ed33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2005-01-12 Joe Shaw - * mono/Makefile.am: Always build the dbus DLL with --debug. + * mono/Makefile.am, mono/example/Makefile.am: Always build the + dbus DLL with --debug. * mono/Arguments.cs (GetDBusTypeConstructor): If the type is an enum, get the enum's underlying type. Another mono diff --git a/mono/example/Makefile.am b/mono/example/Makefile.am index f5a4ab27..60a5aaf4 100644 --- a/mono/example/Makefile.am +++ b/mono/example/Makefile.am @@ -4,13 +4,13 @@ DISTCLEANFILES=$(NOINST_EXES) all: $(NOINST_EXES) echo-server.exe: EchoServer.cs Echoer.cs - $(CSC) --target exe -L .. -r:../dbus-sharp.dll -pkg:gtk-sharp -o echo-server.exe $(srcdir)/EchoServer.cs $(srcdir)/Echoer.cs + $(CSC) --debug --target exe -L .. -r:../dbus-sharp.dll -pkg:gtk-sharp -o echo-server.exe $(srcdir)/EchoServer.cs $(srcdir)/Echoer.cs echo-client.exe: EchoClient.cs Echoer.cs - $(CSC) --target exe -L .. -r:../dbus-sharp.dll -o echo-client.exe $(srcdir)/EchoClient.cs $(srcdir)/Echoer.cs + $(CSC) --debug --target exe -L .. -r:../dbus-sharp.dll -o echo-client.exe $(srcdir)/EchoClient.cs $(srcdir)/Echoer.cs bus-listener.exe: BusListener.cs - $(CSC) --target exe -L .. -r:../dbus-sharp.dll -pkg:gtk-sharp -o bus-listener.exe $(srcdir)/BusListener.cs + $(CSC) --debug --target exe -L .. -r:../dbus-sharp.dll -pkg:gtk-sharp -o bus-listener.exe $(srcdir)/BusListener.cs clean: -- cgit