Fix: Cast closure to proper type
[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 plugindir = $(libdir)/gnunet
14
15 bin_PROGRAMS = \
16  gnunet-peerinfo
17
18 gnunet_peerinfo_SOURCES = \
19  gnunet-peerinfo.c \
20  gnunet-peerinfo_plugins.c gnunet-peerinfo_plugins.h
21
22 gnunet_peerinfo_LDADD = \
23   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
24   $(top_builddir)/src/transport/libgnunettransport.la \
25   $(top_builddir)/src/hello/libgnunethello.la \
26   $(top_builddir)/src/statistics/libgnunetstatistics.la \
27   $(top_builddir)/src/util/libgnunetutil.la
28
29 if HAVE_PYTHON
30 check_SCRIPTS = \
31  test_gnunet_peerinfo.py
32 endif
33
34 if ENABLE_TEST_RUN
35 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
36 TESTS = $(check_SCRIPTS)
37 endif
38
39 do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'
40
41 test_gnunet_peerinfo.py: test_gnunet_peerinfo.py.in Makefile
42         $(do_subst) < $(srcdir)/test_gnunet_peerinfo.py.in > test_gnunet_peerinfo.py
43         chmod +x test_gnunet_peerinfo.py
44
45 EXTRA_DIST = \
46   test_gnunet_peerinfo.py.in \
47   test_gnunet_peerinfo_data.conf
48
49 CLEANFILES = $(check_SCRIPTS)