aboutsummaryrefslogtreecommitdiff
path: root/src/dns
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 13:37:38 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 13:37:38 +0200
commit9ef4abad615bea12d13be542b8ae5fbeb2dfee32 (patch)
tree8875a687e004d331c9ea6a1d511a328c72b88113 /src/dns
parente95236b3ed78cd597c15f34b89385295702b627f (diff)
downloadgnunet-9ef4abad615bea12d13be542b8ae5fbeb2dfee32.tar.gz
gnunet-9ef4abad615bea12d13be542b8ae5fbeb2dfee32.zip
NEWS: Refactoring components under src/ into lib/, plugin/, cli/ and service/
This also includes a necessary API refactoring of crypto from IDENTITY to UTIL.
Diffstat (limited to 'src/dns')
-rw-r--r--src/dns/Makefile.am16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/dns/Makefile.am b/src/dns/Makefile.am
index f8672d55e..6c7462d9a 100644
--- a/src/dns/Makefile.am
+++ b/src/dns/Makefile.am
@@ -45,33 +45,33 @@ gnunet_dns_monitor_SOURCES = \
45 gnunet-dns-monitor.c 45 gnunet-dns-monitor.c
46gnunet_dns_monitor_LDADD = \ 46gnunet_dns_monitor_LDADD = \
47 libgnunetdns.la \ 47 libgnunetdns.la \
48 $(top_builddir)/src/util/libgnunetutil.la \ 48 $(top_builddir)/src/lib/util/libgnunetutil.la \
49 $(GN_LIBINTL) 49 $(GN_LIBINTL)
50 50
51gnunet_zonewalk_SOURCES = \ 51gnunet_zonewalk_SOURCES = \
52 gnunet-zonewalk.c 52 gnunet-zonewalk.c
53gnunet_zonewalk_LDADD = \ 53gnunet_zonewalk_LDADD = \
54 $(top_builddir)/src/util/libgnunetutil.la \ 54 $(top_builddir)/src/lib/util/libgnunetutil.la \
55 $(GN_LIBINTL) 55 $(GN_LIBINTL)
56 56
57gnunet_dns_redirector_SOURCES = \ 57gnunet_dns_redirector_SOURCES = \
58 gnunet-dns-redirector.c 58 gnunet-dns-redirector.c
59gnunet_dns_redirector_LDADD = \ 59gnunet_dns_redirector_LDADD = \
60 libgnunetdns.la \ 60 libgnunetdns.la \
61 $(top_builddir)/src/util/libgnunetutil.la \ 61 $(top_builddir)/src/lib/util/libgnunetutil.la \
62 $(GN_LIBINTL) 62 $(GN_LIBINTL)
63 63
64gnunet_service_dns_SOURCES = \ 64gnunet_service_dns_SOURCES = \
65 gnunet-service-dns.c 65 gnunet-service-dns.c
66gnunet_service_dns_LDADD = \ 66gnunet_service_dns_LDADD = \
67 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 67 $(top_builddir)/src/statistics/libgnunetstatistics.la \
68 $(top_builddir)/src/util/libgnunetutil.la \ 68 $(top_builddir)/src/lib/util/libgnunetutil.la \
69 $(GN_LIBINTL) 69 $(GN_LIBINTL)
70 70
71libgnunetdns_la_SOURCES = \ 71libgnunetdns_la_SOURCES = \
72 dns_api.c dns.h 72 dns_api.c dns.h
73libgnunetdns_la_LIBADD = \ 73libgnunetdns_la_LIBADD = \
74 $(top_builddir)/src/util/libgnunetutil.la $(XLIB) 74 $(top_builddir)/src/lib/util/libgnunetutil.la $(XLIB)
75libgnunetdns_la_LDFLAGS = \ 75libgnunetdns_la_LDFLAGS = \
76 $(GN_LIBINTL) \ 76 $(GN_LIBINTL) \
77 $(GN_LIB_LDFLAGS) \ 77 $(GN_LIB_LDFLAGS) \
@@ -80,9 +80,9 @@ libgnunetdns_la_LDFLAGS = \
80libgnunet_plugin_block_dns_la_SOURCES = \ 80libgnunet_plugin_block_dns_la_SOURCES = \
81 plugin_block_dns.c 81 plugin_block_dns.c
82libgnunet_plugin_block_dns_la_LIBADD = \ 82libgnunet_plugin_block_dns_la_LIBADD = \
83 $(top_builddir)/src/block/libgnunetblockgroup.la \ 83 $(top_builddir)/src/lib/block/libgnunetblockgroup.la \
84 $(top_builddir)/src/block/libgnunetblock.la \ 84 $(top_builddir)/src/lib/block/libgnunetblock.la \
85 $(top_builddir)/src/util/libgnunetutil.la 85 $(top_builddir)/src/lib/util/libgnunetutil.la
86libgnunet_plugin_block_dns_la_LDFLAGS = \ 86libgnunet_plugin_block_dns_la_LDFLAGS = \
87 $(GN_LIBINTL) \ 87 $(GN_LIBINTL) \
88 $(top_builddir)/src/block/$(GN_PLUGIN_LDFLAGS) 88 $(top_builddir)/src/block/$(GN_PLUGIN_LDFLAGS)