dbus-cplusplus/test/functional/Test1/Makefile.am
Andreas Volz 7a3242b77f - now 'make distcheck' runs clean after using correct path in Makefile.am
- removed useles link to xml.cpp in ecore example
2011-11-29 22:54:58 +01:00

40 lines
878 B
Makefile

BUILT_SOURCES = TestAppIntroProviderPrivate.h TestAppIntroPrivate.h
# We don't want to install this header
noinst_HEADERS = $(BUILT_SOURCES)
# Correctly clean the generated headers, but keep the xml description
CLEANFILES = $(BUILT_SOURCES)
EXTRA_DIST = TestAppIntro.xml
noinst_PROGRAMS = \
TestApp
## Rule to generate the binding headers
TestAppIntroProviderPrivate.h: TestAppIntro.xml
$(top_builddir)/tools/dbusxx-xml2cpp $< --adaptor=$@
TestAppIntroPrivate.h: TestAppIntro.xml
$(top_builddir)/tools/dbusxx-xml2cpp $< --proxy=$@
TestApp_SOURCES = \
TestAppMain.cpp \
TestApp.cpp \
TestApp.h \
TestAppIntroProviderPrivate.h \
TestAppIntroPrivate.h \
TestAppIntro.h \
TestAppIntroProvider.h
TestApp_LDFLAGS = \
$(top_builddir)/src/libdbus-c++-1.la
TestApp_CXXFLAGS = \
-I$(top_srcdir)/include
AM_CPPFLAGS =
## File created by the gnome-build tools