blob: d2cddf3cfb086c936571eed9ac23984d4ec3262d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
examplesdir=$(pkgdatadir)/examples/request-response
include $(top_srcdir)/examples/makedist.mk
noinst_PROGRAMS=client server
client_SOURCES=client.cpp
client_LDADD=$(CLIENT_LIB)
server_SOURCES=server.cpp
server_LDADD=$(CLIENT_LIB)
examples_DATA= \
server.cpp \
client.cpp \
$(MAKEDIST)
EXTRA_DIST= \
$(examples_DATA) \
verify \
verify.in \
verify_cpp_python \
verify_cpp_python.in \
verify_python_cpp \
verify_python_cpp.in
|