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