blob: af33a8bb0f16b6264a6274b23ebdfcac97fa3e02 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
INCLUDES = -I$(top_srcdir)/src/include
pkgcfgdir= $(pkgdatadir)/config.d/
libexecdir= $(pkglibdir)/libexec/
pkgcfg_DATA = \
chat.conf
if MINGW
WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
endif
if USE_COVERAGE
AM_CFLAGS = -fprofile-arcs -ftest-coverage
endif
lib_LTLIBRARIES = libgnunetchat.la
libgnunetchat_la_SOURCES = \
chat.c chat.h
libgnunetchat_la_LIBADD = \
$(top_builddir)/src/util/libgnunetutil.la
libgnunetchat_la_LDFLAGS = \
$(GN_LIB_LDFLAGS) $(WINFLAGS) \
-version-info 0:0:0
libexec_PROGRAMS = \
gnunet-service-chat
bin_PROGRAMS = \
gnunet-chat
gnunet_service_chat_SOURCES = \
gnunet-service-chat.c
gnunet_service_chat_LDADD = \
$(top_builddir)/src/core/libgnunetcore.la \
$(top_builddir)/src/util/libgnunetutil.la \
$(GN_LIBINTL)
gnunet_chat_SOURCES = \
gnunet-chat.c
gnunet_chat_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la \
$(GN_LIBINTL)
gnunet_chat_DEPENDENCIES = \
libgnunetchat.la
check_PROGRAMS = \
test_chat \
test_chat_acknowledgement \
test_chat_anonymous \
test_chat_authentication \
test_chat_p2p \
test_chat_acknowledgement_p2p \
test_chat_anonymous_p2p \
test_chat_authentication_p2p \
test_chat_private \
test_chat_private_p2p
if ENABLE_TEST_RUN
TESTS = $(check_PROGRAMS)
endif
test_chat_SOURCES = \
test_chat.c
test_chat_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_acknowledgement_SOURCES = \
test_chat.c
test_chat_acknowledgement_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_anonymous_SOURCES = \
test_chat.c
test_chat_anonymous_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_authentication_SOURCES = \
test_chat.c
test_chat_authentication_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_p2p_SOURCES = \
test_chat.c
test_chat_p2p_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_acknowledgement_p2p_SOURCES = \
test_chat.c
test_chat_acknowledgement_p2p_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_anonymous_p2p_SOURCES = \
test_chat.c
test_chat_anonymous_p2p_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_authentication_p2p_SOURCES = \
test_chat.c
test_chat_authentication_p2p_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_private_SOURCES = \
test_chat_private.c
test_chat_private_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
test_chat_private_p2p_SOURCES = \
test_chat_private.c
test_chat_private_p2p_LDADD = \
$(top_builddir)/src/chat/libgnunetchat.la \
$(top_builddir)/src/util/libgnunetutil.la
EXTRA_DIST = \
test_chat_data.conf \
test_chat_peer1.conf \
test_chat_peer2.conf \
test_chat_peer3.conf
|