- fix use of uninitialized memory
[oweals/gnunet.git] / src / peerinfo-tool / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 if MINGW
5  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
6 endif
7
8 if USE_COVERAGE
9   AM_CFLAGS = --coverage -O0
10   XLIB = -lgcov
11 endif
12
13 bin_PROGRAMS = \
14  gnunet-peerinfo
15
16 gnunet_peerinfo_SOURCES = \
17  gnunet-peerinfo.c \
18  gnunet-peerinfo_plugins.c gnunet-peerinfo_plugins.h
19
20 gnunet_peerinfo_LDADD = \
21   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
22   $(top_builddir)/src/nat/libgnunetnat.la \
23   $(top_builddir)/src/transport/libgnunettransport.la \
24   $(top_builddir)/src/hello/libgnunethello.la \
25   $(top_builddir)/src/statistics/libgnunetstatistics.la \
26   $(top_builddir)/src/util/libgnunetutil.la
27
28 if HAVE_PYTHON
29 check_SCRIPTS = \
30  test_gnunet_peerinfo.py
31 endif
32
33 if ENABLE_TEST_RUN
34 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
35 TESTS = $(check_SCRIPTS)
36 endif
37
38 do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'
39
40 test_gnunet_peerinfo.py: test_gnunet_peerinfo.py.in Makefile
41         $(do_subst) < $(srcdir)/test_gnunet_peerinfo.py.in > test_gnunet_peerinfo.py
42         chmod +x test_gnunet_peerinfo.py
43
44 EXTRA_DIST = \
45   test_gnunet_peerinfo.py.in \
46   test_gnunet_peerinfo_data.conf
47
48 CLEANFILES = $(check_SCRIPTS)