diff options
author | Havoc Pennington <hp@redhat.com> | 2004-03-19 22:36:30 +0000 |
---|---|---|
committer | John Palmieri <johnp@remedyz.boston.redhat.com> | 2006-06-28 08:15:08 -0400 |
commit | 69a865f573e96e55870c4ec9566816279920829c (patch) | |
tree | 60c6cb2725bbde4225ce7167643306768f299c6b /qt | |
parent | 358c004a70fd7874c940149c679fd7e37c149705 (diff) |
2004-03-19 Havoc Pennington <hp@redhat.com>
* NEWS: 0.21 updates
* configure.in: 0.21
* doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
* python/Makefile.am: change to avoid dist of dbus_bindings.c so
you don't need pyrex to make dist
* qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
sources; run moc
Diffstat (limited to 'qt')
-rw-r--r-- | qt/Makefile.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/qt/Makefile.am b/qt/Makefile.am index 80d0a9b..e6f7a08 100644 --- a/qt/Makefile.am +++ b/qt/Makefile.am @@ -10,7 +10,16 @@ dbusinclude_HEADERS= \ libdbus_qt_1_la_SOURCES = \ dbus-qthread.cpp message.cpp connection.cpp \ - integrator.cpp server.cpp + integrator.cpp server.cpp integrator.h + +connection.cpp: connection.moc +integrator.cpp: integrator.moc +server.cpp: server.moc + +CLEANFILES=connection.moc integrator.moc server.moc libdbus_qt_1_la_LIBADD= $(DBUS_QT_LIBS) $(top_builddir)/dbus/libdbus-1.la libdbus_qt_1_la_LDFLAGS= -version-info 1:0 + +%.moc: %.h + $(QT_MOC) $< > $@ |