doxygen fix
[oweals/gnunet.git] / src / template / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 pkgcfgdir= $(pkgdatadir)/config.d/
4
5 dist_pkgcfg_DATA = \
6   template.conf
7
8 if MINGW
9  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
10 endif
11
12 if USE_COVERAGE
13   AM_CFLAGS = -fprofile-arcs -ftest-coverage
14 endif
15
16 bin_PROGRAMS = \
17  gnunet-template \
18  gnunet-service-template
19
20 gnunet_template_SOURCES = \
21  gnunet-template.c         
22 gnunet_template_LDADD = \
23   $(top_builddir)/src/util/libgnunetutil.la \
24   $(GN_LIBINTL)
25
26 gnunet_service_template_SOURCES = \
27  gnunet-service-template.c         
28 gnunet_service_template_LDADD = \
29   $(top_builddir)/src/util/libgnunetutil.la \
30   $(GN_LIBINTL)
31
32
33 check_PROGRAMS = \
34  test_template_api
35
36 if ENABLE_TEST_RUN
37 TESTS = $(check_PROGRAMS)
38 endif
39
40 test_template_api_SOURCES = \
41  test_template_api.c
42 test_template_api_LDADD = \
43   $(top_builddir)/src/util/libgnunetutil.la  
44