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

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

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
endif

pkgcfgdir= $(pkgdatadir)/config.d/

plugindir = $(libdir)/gnunet

pkgcfg_DATA = \
  dns.conf

lib_LTLIBRARIES = \
  libgnunetgns.la

bin_PROGRAMS = \
  gnunet-service-gns $(HIJACKBIN)

noinst_PROGRAMS = \
  gnunet-gns-lookup gnunet-gns-add

#check_SCRIPTS = \
# test_gnunet_dns.sh


gnunet_gns_add_SOURCES = \
 gnunet-gns-add.c
gnunet_gns_add_LDADD = \
  $(top_builddir)/src/gns/libgnunetgns.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL)
gnunet_dns_add_DEPENDENCIES = \
  libgnunetgns.la

gnunet_service_gns_SOURCES = \
 gnunet-service-gns.c 
gnunet_service_gns_LDADD = \
  $(top_builddir)/src/tun/libgnunettun.la \
  $(top_builddir)/src/mesh/libgnunetmesh.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la \
	$(top_builddir)/src/dns/libgnunetdns.la \
  $(GN_LIBINTL)

libgnunetgns_la_SOURCES = \
 gns_api.c gns.h
libgnunetgns_la_LIBADD = \
 $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
libgnunetgns_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS)

if ENABLE_TEST_RUN
TESTS = $(check_PROGRAMS)  $(check_SCRIPTS)
endif

EXTRA_DIST = \
  $(check_SCRIPTS)