Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: examples/glib/Makefile.am

Issue 2120003: Fix dbus-c++ to compile examples in a cross compilation environment (Closed) Base URL: ssh://git@chromiumos-git//dbus-cplusplus.git
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « examples/ecore/Makefile.am ('k') | examples/properties/Makefile.am » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 EXTRA_DIST = 1 EXTRA_DIST =
2 2
3 if CROSS_COMPILING
4 dbusxx_xml2cpp = dbusxx-xml2cpp
5 else
6 dbusxx_xml2cpp = $(top_builddir)/tools/dbusxx-xml2cpp
7 endif
8
3 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include $(gtkmm_CFLAGS) -I$(top_srcdir)/tools 9 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include $(gtkmm_CFLAGS) -I$(top_srcdir)/tools
4 10
5 if HAVE_GTKMM 11 if HAVE_GTKMM
6 noinst_PROGRAMS = dbus-browser 12 noinst_PROGRAMS = dbus-browser
7 endif 13 endif
8 14
9 dbus_browser_SOURCES = dbus-glue.h dbus-browser.h dbus-browser.cpp $(top_srcdir) /tools/xml.cpp 15 dbus_browser_SOURCES = dbus-glue.h dbus-browser.h dbus-browser.cpp $(top_srcdir) /tools/xml.cpp
10 dbus_browser_LDADD = $(top_builddir)/src/libdbus-c++-1.la $(gtkmm_LIBS) 16 dbus_browser_LDADD = $(top_builddir)/src/libdbus-c++-1.la $(gtkmm_LIBS)
11 17
12 dbus-glue.h: $(top_srcdir)/data/org.freedesktop.DBus.xml 18 dbus-glue.h: $(top_srcdir)/data/org.freedesktop.DBus.xml
13 » $(top_builddir)/tools/dbusxx-xml2cpp $^ --proxy=$@ 19 » $(dbusxx_xml2cpp) $^ --proxy=$@
14 20
15 BUILT_SOURCES = dbus-glue.h 21 BUILT_SOURCES = dbus-glue.h
16 CLEANFILES = $(BUILT_SOURCES) 22 CLEANFILES = $(BUILT_SOURCES)
17 23
18 dist-hook: 24 dist-hook:
19 cd $(distdir); rm -f $(BUILT_SOURCES) 25 cd $(distdir); rm -f $(BUILT_SOURCES)
20 26
21 MAINTAINERCLEANFILES = \ 27 MAINTAINERCLEANFILES = \
22 Makefile.in 28 Makefile.in
OLDNEW
« no previous file with comments | « examples/ecore/Makefile.am ('k') | examples/properties/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698