blob: 0ffe90f21d734ff4e61859594a1b2b9255f44225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
if HAVE_QT3
INCLUDES=-I$(top_srcdir) $(DBUS_CFLAGS) $(DBUS_CLIENT_CFLAGS) $(DBUS_QT3_CXXFLAGS)
lib_LTLIBRARIES=libdbus-qt-1.la
dbusinclude_HEADERS= \
dbus-qt.h message.h connection.h \
server.h
dbusincludedir= $(includedir)/dbus-1.0/dbus/
libdbus_qt_1_la_SOURCES = \
$(top_srcdir)/qt3/dbus-qthread.cpp \
$(top_srcdir)/qt3/message.cpp \
$(top_srcdir)/qt3/connection.cpp \
$(top_srcdir)/qt3/integrator.cpp \
$(top_srcdir)/qt3/server.cpp \
$(top_srcdir)/qt3/connection.h \
$(top_srcdir)/qt3/integrator.h \
$(top_srcdir)/qt3/server.h
$(top_srcdir)/qt3/connection.cpp: connection.tqmoc
$(top_srcdir)/qt3/integrator.cpp: integrator.tqmoc
$(top_srcdir)/qt3/server.cpp: server.tqmoc
$(top_srcdir)/qt3/connection.h: connection.tqmoc
$(top_srcdir)/qt3/integrator.h: integrator.tqmoc
$(top_srcdir)/qt3/server.h: server.tqmoc
CLEANFILES=connection.tqmoc integrator.tqmoc server.tqmoc
libdbus_qt_1_la_LIBADD= $(DBUS_LIBS) $(DBUS_QT3_LIBS)
libdbus_qt_1_la_LDFLAGS= -version-info 1:0 -no-undefined
%.tqmoc: %.h
$(QT3_TQMOC) $< > $@
endif
|