dbus/mono/example Makefile.am,1.3,1.4

Jon Trowbridge trow at freedesktop.org
Mon Sep 20 11:24:41 UTC 2004


Update of /cvs/dbus/dbus/mono/example
In directory gabe:/tmp/cvs-serv11161/mono/example

Modified Files:
	Makefile.am 
Log Message:
2004-09-20  Jon Trowbridge  <trow at ximian.com>

	    Patch from Nat Friedman <nat at novell.com>

	    * mono/Makefile.am: A number of small build fixes to allow "make
	    distcheck" to succeed.

	    * mono/example/Makefile.am: "make distcheck" fixes.

	    * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
	    key in @srcdir at .

	    * test/Makefile.am: "make distcheck" fixes.



Index: Makefile.am
===================================================================
RCS file: /cvs/dbus/dbus/mono/example/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile.am	7 Jun 2004 11:40:20 -0000	1.3
+++ Makefile.am	20 Sep 2004 11:24:38 -0000	1.4
@@ -1,14 +1,15 @@
 DESTDIR=
 
 NOINST_EXES=echo-server.exe echo-client.exe
+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 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
 
 echo-client.exe: EchoClient.cs Echoer.cs
-	$(CSC) --target exe -L .. -r:../dbus-sharp.dll -o 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
 
 clean:
 	rm -f $(NOINST_EXES)



More information about the dbus-commit mailing list