summaryrefslogtreecommitdiffstats
path: root/mono/example
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2004-09-20 11:24:38 +0000
committerJon Trowbridge <trow@ximian.com>2004-09-20 11:24:38 +0000
commit64b63e84b7f08695bf194a05aadd074600c8e622 (patch)
tree97d60aa9e9a12e9240afd5e3728f752dbbd2fa00 /mono/example
parent1658c8afe59166c9aa77549a3ac6a2e389327638 (diff)
2004-09-20 Jon Trowbridge <trow@ximian.com>
Patch from Nat Friedman <nat@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@. * test/Makefile.am: "make distcheck" fixes.
Diffstat (limited to 'mono/example')
-rw-r--r--mono/example/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/mono/example/Makefile.am b/mono/example/Makefile.am
index 65a466a6..d5a29127 100644
--- a/mono/example/Makefile.am
+++ b/mono/example/Makefile.am
@@ -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)