unfortunately dist-hook only works if directly visible for automake
[libt2n] / example-codegen / Makefile.am
CommitLineData
44a58add
JT
1INCLUDES = @LIBT2N_CPPFLAGS@
2LDADD = @LIBT2N_LIBS@
86c1c2e9 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
84b484fa
JT
18# and we can't use noinst since our automake version is to old
19# (see dist-hook in codegen.make)
0cfa3fb2 20
a96ab628
JT
21libdefault_la_SOURCES = default_client.cpp
22libother_la_SOURCES = other_client.cpp
3c4dd222
JT
23lib_LTLIBRARIES = libdefault.la libother.la
24
3c4dd222 25# build an example server and client
86c1c2e9 26client_SOURCES = client.cpp
a96ab628 27client_LDADD = $(LDADD) libdefault.la libother.la
6e27f586 28
86c1c2e9
JT
29noinst_PROGRAMS = client server
30
84b484fa
JT
31server_SOURCES = \
32 server.cpp $(other_GROUP) $(default_GROUP) \
33 other_server.cpp default_server.cpp
34
3c4dd222
JT
35# test script
36
37TESTS = test
1f5e9bde 38
5a7380a0
JT
39EXTRA_DIST = $(TESTS) configure.in
40
41# we have got an old automake version (1.4-p5) which doesn't support nodist_
42# => you might want to use the dist-hook to remove generated files
43dist-hook:
44 rm -vf $(foreach i, $(BUILT_SOURCES), $(distdir)/$(i))
45
46# if you use codegen you should add the next line at the end
47@LIBT2N_CODEGEN_MAKESNIPPET@