816fafd68ac6bf6fcbd92a5a35b866ac1a7531ec
[libt2n] / example-codegen / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src @BOOST_CPPFLAGS@ @CPPUNIT_CFLAGS@ -I$(top_srcdir)/codegen
2 LDADD = $(top_builddir)/src/libt2n.la @BOOST_SERIALIZATION_LIB@ @BOOST_LDFLAGS@
3
4 # list your command groups
5 CMDGROUPS = default other
6
7 # for each command group list the files to parse for LIBT2N_EXPORT
8 default_GROUP = default.cpp
9 # example of a command group using multiple cpp files
10 other_GROUP = other-1.cpp other-2.cpp
11
12 # headers declaring data types used as rpc arguments must be listed manually
13 # (in this example the class Foo)
14 include_HEADERS = foo.hxx
15
16 # unfortunately we can't set those from variables
17 # because they are parsed by automake
18
19 libdefault_la_SOURCES = default_client.cpp
20 libother_la_SOURCES = other_client.cpp
21 lib_LTLIBRARIES = libdefault.la libother.la
22
23 # build an example server and client
24 client_SOURCES = client.cpp
25 client_LDADD = $(LDADD) libdefault.la libother.la
26
27 server_SOURCES = server.cpp \
28         $(other_GROUP) other_server.cpp \
29         $(default_GROUP) default_server.cpp
30
31 noinst_PROGRAMS = client server
32
33 # test script
34
35 TESTS = test
36
37 EXTRA_DIST = $(TESTS)
38
39 # always the same:
40
41 include_HEADERS += $(foreach i, $(CMDGROUPS), $(i)_client.hxx $(i).hxx)
42
43 #IFILES=$(foreach i, $(CMDGROUPS), $(foreach j, $($(i)_GROUP), $(j)))
44
45 -include $(foreach i, $(CMDGROUPS), group_$(i).P)
46
47 group_%.P : Makefile.am
48         echo $@ : $($*_GROUP) > group_$*.P
49
50 %.stamp : group_%.P $(top_builddir)/codegen/codegen
51 # assuming we have some unix like shell (maybe even bash)
52         echo BUILT_SOURCES: $(BUILT_SOURCES)
53 # temporarily create _common.hxx file (will be overwritten by codegen below)
54         echo '#include "codegen-stubhead.hxx"' > $*_common.hxx;
55         echo '#include "$*.hxx"' >> $*_common.hxx;
56 # todo use tmp file for xml file
57         for i in $($*_GROUP); do \
58                 gccxml $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) $(srcdir)/$${i} -fxml=$${i%*.cpp}.xml; \
59         done; \
60         $(top_builddir)/codegen/codegen $* $($*_GROUP:.cpp=.xml) && touch $@
61
62 # assuming we have gnu make?
63 BUILT_SOURCES = $(foreach i, $(CMDGROUPS), $(foreach j, _common.hxx _common.cpp _client.hxx _client.cpp _server.hxx _server.cpp, $(i)$(j)) )
64
65 STAMPS=$(CMDGROUPS:=.stamp)
66 $(BUILT_SOURCES) : $(STAMPS)
67
68 # Install the pkg-config files:
69 pkgconfigdir = $(libdir)/pkgconfig
70 pkgconfig_DATA = $(CMDGROUPS:=.pc)
71
72 # .pc files (one pc file for each command group)
73 %.pc : $(top_srcdir)/codegen/clientlib.pc.in Makefile
74         sed \
75         -e 's,@CMDGROUP@,$*,g' \
76         -e 's,\@prefix\@,$(prefix),g' \
77         -e 's,\@exec_prefix\@,$(exec_prefix),g' \
78         -e 's,\@libdir\@,$(libdir),g' \
79         -e 's,\@includedir\@,$(includedir),g' \
80         $< >$*.pc
81
82 CLEANFILES = $(BUILT_SOURCES) $(STAMPS) $(pkgconfig_DATA)
83
84 # didn't work (same problem as with _LTLIBRARIES [parsing by automake],
85 # this time _OBJECTS was not correct)
86 # server_SOURCES = server.cpp \
87 #       $(foreach i, $(CMDGROUPS), $(foreach j, $($(i)_GROUP), $(j))) \
88 #       $(foreach i, $(CMDGROUPS), $(i)_server.cpp)