aboutsummaryrefslogtreecommitdiff
path: root/src/block/Makefile.am
blob: b9585c260e36ee7391aa8eaea0d56584f2fbae70 (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
INCLUDES = -I$(top_srcdir)/src/include

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

if USE_COVERAGE
  AM_CFLAGS = --coverage
endif

lib_LTLIBRARIES = libgnunetblock.la

libgnunetblock_la_SOURCES = \
  block.c 
libgnunetblock_la_LIBADD = \
 $(top_builddir)/src/util/libgnunetutil.la  

check_PROGRAMS = \
 test_block

#TESTS = $(check_PROGRAMS)

test_block_SOURCES = \
 test_block.c
test_block_LDADD = \
 $(top_builddir)/src/block/libgnunetblock.la \
 $(top_builddir)/src/util/libgnunetutil.la