
dbus C has the same feature this enables distribution package creators easier to provide all mainloop integrations without getting to much deps for dbus-c++
70 lines
1.6 KiB
Makefile
70 lines
1.6 KiB
Makefile
lib_LTLIBRARIES = \
|
|
libdbus-c++-1.la
|
|
|
|
libdbus_c___1_la_SOURCES = \
|
|
connection.cpp \
|
|
connection_p.h \
|
|
debug.cpp \
|
|
dispatcher.cpp \
|
|
dispatcher_p.h \
|
|
error.cpp \
|
|
eventloop.cpp \
|
|
eventloop-integration.cpp \
|
|
interface.cpp \
|
|
internalerror.h \
|
|
introspection.cpp \
|
|
message.cpp \
|
|
message_p.h \
|
|
object.cpp \
|
|
pendingcall.cpp \
|
|
pendingcall_p.h \
|
|
pipe.cpp \
|
|
property.cpp \
|
|
server.cpp \
|
|
server_p.h \
|
|
types.cpp
|
|
|
|
libdbus_c___1_la_CXXFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-Wno-unused-parameter
|
|
|
|
libdbus_c___1_la_LIBADD = \
|
|
$(dbus_LIBS)
|
|
|
|
AM_CPPFLAGS = \
|
|
$(dbus_CFLAGS) \
|
|
$(glib_CFLAGS) \
|
|
$(ecore_CFLAGS)
|
|
|
|
SUBDIRS = \
|
|
integration
|
|
|
|
HEADER_DIR = $(top_srcdir)/include/dbus-c++
|
|
libdbus_c___1_HEADERS = \
|
|
$(HEADER_DIR)/api.h \
|
|
$(HEADER_DIR)/connection.h \
|
|
$(HEADER_DIR)/dbus.h \
|
|
$(HEADER_DIR)/debug.h \
|
|
$(HEADER_DIR)/dispatcher.h \
|
|
$(HEADER_DIR)/error.h \
|
|
$(HEADER_DIR)/eventloop.h \
|
|
$(HEADER_DIR)/eventloop-integration.h \
|
|
$(HEADER_DIR)/interface.h \
|
|
$(HEADER_DIR)/introspection.h \
|
|
$(HEADER_DIR)/message.h \
|
|
$(HEADER_DIR)/object.h \
|
|
$(HEADER_DIR)/pendingcall.h \
|
|
$(HEADER_DIR)/pipe.h \
|
|
$(HEADER_DIR)/property.h \
|
|
$(HEADER_DIR)/refptr_impl.h \
|
|
$(HEADER_DIR)/server.h \
|
|
$(HEADER_DIR)/types.h \
|
|
$(HEADER_DIR)/util.h
|
|
|
|
libdbus_c___1dir=$(includedir)/dbus-c++-1/dbus-c++/
|
|
|
|
EXTRA_DIST = \
|
|
$(libdbus_c___1_HEADERS)
|
|
|
|
## File created by the gnome-build tools
|
|
|