dbus/mono/example/Makefile.am
Joe Shaw ce11956e45 2005-01-12 Joe Shaw <joeshaw@novell.com>
* mono/Makefile.am, mono/example/Makefile.am: Always build the
	dbus DLL with --debug.  Clean up after the .mdb files this leaves
	behind.
2005-01-12 22:52:34 +00:00

22 lines
756 B
Makefile

NOINST_EXES=echo-server.exe echo-client.exe bus-listener.exe
DISTCLEANFILES=$(NOINST_EXES) $(NOINST_EXES:%=%.mdb)
all: $(NOINST_EXES)
echo-server.exe: EchoServer.cs 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) --debug --target exe -L .. -r:../dbus-sharp.dll -o echo-client.exe $(srcdir)/EchoClient.cs $(srcdir)/Echoer.cs
bus-listener.exe: BusListener.cs
$(CSC) --debug --target exe -L .. -r:../dbus-sharp.dll -pkg:gtk-sharp -o bus-listener.exe $(srcdir)/BusListener.cs
clean:
rm -f $(NOINST_EXES) $(NOINST_EXES:%=%.mdb)
install: all
EXTRA_DIST=EchoServer.cs EchoClient.cs Echoer.cs BusListener.cs