summaryrefslogtreecommitdiff
path: root/frameworks/middleware/examples/dbus/Makefile.am
diff options
context:
space:
mode:
authorManuel Traut <manut@mecka.net>2014-02-18 23:27:47 +0100
committerManuel Traut <manut@mecka.net>2014-02-18 23:27:47 +0100
commitddf662b88e0e04dd6af3bba47b4a58e4d284e7d1 (patch)
tree64d6b7d61f586b27ae1cd066fdcafad45f8cfa59 /frameworks/middleware/examples/dbus/Makefile.am
parent21e79c833fcbd2d7c43380a2f74b5c0173c6c1a0 (diff)
dbus example: remove compile.sh and make a autotools project
compile.sh was a pain. didn't work with current debian. so this patch removes it and converts the example to an autools project. Signed-off-by: Manuel Traut <manut@mecka.net>
Diffstat (limited to 'frameworks/middleware/examples/dbus/Makefile.am')
-rw-r--r--frameworks/middleware/examples/dbus/Makefile.am8
1 files changed, 8 insertions, 0 deletions
diff --git a/frameworks/middleware/examples/dbus/Makefile.am b/frameworks/middleware/examples/dbus/Makefile.am
new file mode 100644
index 0000000..830a98e
--- /dev/null
+++ b/frameworks/middleware/examples/dbus/Makefile.am
@@ -0,0 +1,8 @@
+bin_PROGRAMS = pingserver pingclient
+pingserver_SOURCES = ping-server.c
+pingserver_CFLAGS = $(DBUS_CFLAGS)
+pingserver_LDADD = $(DBUS_LIBS)
+
+pingclient_SOURCES = ping-client.c
+pingclient_CFLAGS = $(DBUS_CFLAGS)
+pingclient_LDADD = $(DBUS_LIBS)