Remove autogenerated files
[libt2n] / examples-codegen / example2 / Makefile.am
CommitLineData
208db683
JT
1# not a GNU package. You can remove this line, if
2# you have all needed files, that a GNU package needs
3AUTOMAKE_OPTIONS = foreign
4
5INCLUDES = @LIBT2N_CFLAGS@
6LDADD = @LIBT2N_LIBS@
7
8# list your command groups
9CMDGROUPS = default other
10
11# for each command group list the files to parse for LIBT2N_EXPORT
12default_GROUP = default.cpp
13# example of a command group using multiple cpp files
14other_GROUP = other-1.cpp other-2.cpp
15
16# headers declaring data types used as rpc arguments must be listed manually
17# (in this example the class Foo)
18include_HEADERS = foo.hxx
19
20# unfortunately we can't set those from variables
21# because they are parsed by automake
22
23# we would like to use nodist_ here but our automake is to old
24# nodist_libdefault_la_SOURCES = default_client.cpp
25# nodist_libother_la_SOURCES = other_client.cpp
26
27# using objects as workaround for missing nodist_ didn't work
28# libdefault_la_OBJECTS += default_client.lo
29# libother_la_OBJECTS += other_client.lo
30# Note: the library name must match the group name
31
32libdefault_la_SOURCES = default_client.cpp
33libother_la_SOURCES = other_client.cpp
34lib_LTLIBRARIES = libdefault.la libother.la
35
36# build an example server and client
37client_SOURCES = client.cpp
38client_LDADD = $(LDADD) libdefault.la libother.la
39
40noinst_PROGRAMS = client
41
42bin_PROGRAMS = libt2n-example2-server
43
44# we would like to use nodist_ here but our automake is to old
45# nodist_server_SOURCES = other_server.cpp default_server.cpp
46# using LDADD as workaround didn't work
47# server_LDADD = $(LDADD) other_server.$(OBJEXT) default_server.$(OBJEXT)
48
49libt2n_example2_server_SOURCES = \
50 server.cpp $(other_GROUP) $(default_GROUP) \
51 other_server.cpp default_server.cpp
52
53# test script
54
55TESTS = test
56
57EXTRA_DIST = $(TESTS)
58
59# if you use libt2n-codegen you should add this
60# (i did not find a nice way to let libt2n install this makefile snippet
61# and let projects using libt2n use the installed version.
62# the core of the problem is:
63# the makefile snippet is already needed when automake is run
64# => no way to let configure locate the snippet)
65include codegen.make