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