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

Side by Side Diff: examples/properties/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/glib/Makefile.am ('k') | no next file » | 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 = propsgs-introspect.xml 1 EXTRA_DIST = propsgs-introspect.xml
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 9 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include
4 10
5 noinst_PROGRAMS = propsgs-server propsgs-client 11 noinst_PROGRAMS = propsgs-server propsgs-client
6 12
7 propsgs_server_SOURCES = propsgs-glue-adaptor.h propsgs-server.h propsgs-server. cpp 13 propsgs_server_SOURCES = propsgs-glue-adaptor.h propsgs-server.h propsgs-server. cpp
8 propsgs_server_LDADD = $(top_builddir)/src/libdbus-c++-1.la 14 propsgs_server_LDADD = $(top_builddir)/src/libdbus-c++-1.la
9 15
10 propsgs_client_SOURCES = propsgs-glue-proxy.h propsgs-client.h propsgs-client.cp p 16 propsgs_client_SOURCES = propsgs-glue-proxy.h propsgs-client.h propsgs-client.cp p
11 propsgs_client_LDADD = $(top_builddir)/src/libdbus-c++-1.la -lpthread 17 propsgs_client_LDADD = $(top_builddir)/src/libdbus-c++-1.la -lpthread
12 18
13 propsgs-glue-adaptor.h: propsgs-introspect.xml 19 propsgs-glue-adaptor.h: propsgs-introspect.xml
14 » $(top_builddir)/tools/dbusxx-xml2cpp $^ --adaptor=$@ -- 20 » $(dbusxx_xml2cpp) $^ --adaptor=$@ --
15 21
16 propsgs-glue-proxy.h: propsgs-introspect.xml 22 propsgs-glue-proxy.h: propsgs-introspect.xml
17 » $(top_builddir)/tools/dbusxx-xml2cpp $^ --proxy=$@ -- 23 » $(dbusxx_xml2cpp) $^ --proxy=$@ --
18 24
19 BUILT_SOURCES = propsgs-glue-adaptor.h propsgs-glue-proxy.h 25 BUILT_SOURCES = propsgs-glue-adaptor.h propsgs-glue-proxy.h
20 CLEANFILES = $(BUILT_SOURCES) 26 CLEANFILES = $(BUILT_SOURCES)
21 27
22 dist-hook: 28 dist-hook:
23 cd $(distdir); rm -f $(BUILT_SOURCES) 29 cd $(distdir); rm -f $(BUILT_SOURCES)
24 30
25 MAINTAINERCLEANFILES = \ 31 MAINTAINERCLEANFILES = \
26 Makefile.in 32 Makefile.in
OLDNEW
« no previous file with comments | « examples/glib/Makefile.am ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698