diff options
| author | Michael Biebl <biebl@debian.org> | 2011-05-04 21:35:41 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2011-05-04 21:35:41 +0200 |
| commit | 9f806e97a24bba61417ae312fcc0da40914266fb (patch) | |
| tree | 4a25723414ceac11b4cba0558aa16f6f4b459f4b /examples/C/qt/Makefile.am | |
| parent | 8baa1aca8dfd35e3190d7d5655eb83b5b901e263 (diff) | |
Imported Upstream version 0.8.999 upstream/0.8.999
Diffstat (limited to 'examples/C/qt/Makefile.am')
| -rw-r--r-- | examples/C/qt/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/C/qt/Makefile.am b/examples/C/qt/Makefile.am new file mode 100644 index 00000000..e1e17b38 --- /dev/null +++ b/examples/C/qt/Makefile.am @@ -0,0 +1,24 @@ +INCLUDES = -I${top_srcdir}/include + +AM_CPPFLAGS = \ + $(DBUS_CFLAGS) \ + $(QT_CFLAGS) + +noinst_PROGRAMS = \ + add-connection-wired \ + list-connections + +add_connection_wired_SOURCES = add-connection-wired.cpp +add_connection_wired_LDADD = \ + $(DBUS_LIBS) \ + $(QT_LIBS) + +list_connections_SOURCES = list-connections.cpp +list_connections_LDADD = \ + $(DBUS_LIBS) \ + $(QT_LIBS) + +EXTRA_DIST = \ + add-connection-wired.cpp \ + list-connections.cpp + |