aboutsummaryrefslogtreecommitdiff
path: root/src/stream/Makefile.am
blob: 54f2a6fa589ce54fc766dff9aead3bb5a685a43c (plain) (blame)
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
INCLUDES = -I$(top_srcdir)/src/include

if MINGW
  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
endif

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
  XLIB = -lgcov
endif

lib_LTLIBRARIES = libgnunetstream.la

libgnunetstream_la_SOURCES = \
  stream_api.c stream_protocol.h
libgnunetstream_la_LIBADD = \
 $(top_builddir)/src/mesh/libgnunetmesh.la \
 $(top_builddir)/src/lockmanager/libgnunetlockmanager.la \
 $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
libgnunetstream_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS)

check_PROGRAMS = \
 test_stream_2peers \
 test_stream_2peers_halfclose \
 test_stream_local \
 test_stream_big \
 test_stream_sequence_wraparound

EXTRA_DIST = test_stream_local.conf

if ENABLE_TEST_RUN
TESTS = $(check_PROGRAMS)
# test_stream_2peers \
 test_stream_2peers_halfclose \
 test_stream_local
endif

test_stream_2peers_SOURCES = \
 test_stream_2peers.c
test_stream_2peers_LDADD = \
 $(top_builddir)/src/stream/libgnunetstream.la \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la

test_stream_2peers_halfclose_SOURCES = \
 test_stream_2peers_halfclose.c
test_stream_2peers_halfclose_LDADD = \
 $(top_builddir)/src/stream/libgnunetstream.la \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la

test_stream_local_SOURCES = \
 test_stream_local.c
test_stream_local_LDADD = \
 $(top_builddir)/src/stream/libgnunetstream.la \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing/libgnunettesting.la

test_stream_big_SOURCES = \
 test_stream_big.c
test_stream_big_LDADD = \
 $(top_builddir)/src/stream/libgnunetstream.la \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing/libgnunettesting.la

test_stream_sequence_wraparound_SOURCES = \
 test_stream_sequence_wraparound.c
test_stream_sequence_wraparound_LDADD = \
 $(top_builddir)/src/stream/libgnunetstream.la \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing/libgnunettesting.la