
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++
24 lines
653 B
Makefile
24 lines
653 B
Makefile
EXTRA_DIST =
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include $(ecore_CFLAGS) $(xml_CFLAGS) -I$(top_srcdir)/tools
|
|
|
|
if ENABLE_ECORE
|
|
noinst_PROGRAMS = dbus_ecore
|
|
endif
|
|
|
|
dbus_ecore_SOURCES = dbus_ecore-glue.h dbus_ecore.h dbus_ecore.cpp $(top_srcdir)/tools/xml.cpp
|
|
dbus_ecore_LDADD = $(top_builddir)/src/libdbus-c++-ecore-1.la \
|
|
$(top_builddir)/src/libdbus-c++-1.la $(ecore_LIBS) $(xml_LIBS)
|
|
|
|
dbus_ecore-glue.h: $(top_srcdir)/data/org.freedesktop.DBus.xml
|
|
$(top_builddir)/tools/dbusxx-xml2cpp $^ --proxy=$@
|
|
|
|
BUILT_SOURCES = dbus_ecore-glue.h
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
dist-hook:
|
|
cd $(distdir); rm -f $(BUILT_SOURCES)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in
|
|
|