moving resolver to util, making DNS lookups asynchronous in util
[oweals/gnunet.git] / src / transport / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 if MINGW
6   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
7 endif
8
9 if USE_COVERAGE
10   AM_CFLAGS = --coverage -O0
11 endif
12
13
14 lib_LTLIBRARIES = \
15   libgnunettransport.la
16
17 libgnunettransport_la_SOURCES = \
18   transport_api.c transport.h
19 libgnunettransport_la_LIBADD = \
20   $(top_builddir)/src/arm/libgnunetarm.la \
21   $(top_builddir)/src/hello/libgnunethello.la \
22   $(top_builddir)/src/util/libgnunetutil.la \
23   $(GN_LIBINTL) 
24 libgnunettransport_la_LDFLAGS = \
25   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
26   -version-info 0:0:0
27
28
29 bin_PROGRAMS = \
30  gnunet-transport \
31  gnunet-service-transport
32
33 gnunet_transport_SOURCES = \
34  gnunet-transport.c         
35 gnunet_transport_LDADD = \
36   $(top_builddir)/src/transport/libgnunettransport.la \
37   $(top_builddir)/src/util/libgnunetutil.la \
38   $(GN_LIBINTL)
39
40 gnunet_service_transport_SOURCES = \
41  gnunet-service-transport.c plugin_transport.h
42 gnunet_service_transport_LDADD = \
43   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
44   $(top_builddir)/src/util/libgnunetutil.la \
45   $(GN_LIBINTL)
46
47
48
49 plugin_LTLIBRARIES = \
50   libgnunet_plugin_transport_tcp.la \
51   libgnunet_plugin_transport_template.la 
52 # TODO: add udp, http, nat, etc.
53
54 libgnunet_plugin_transport_tcp_la_SOURCES = \
55   plugin_transport_tcp.c
56 libgnunet_plugin_transport_tcp_la_LIBADD = \
57   $(top_builddir)/src/hello/libgnunethello.la \
58   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
59   $(top_builddir)/src/util/libgnunetutil.la 
60 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
61  $(GN_PLUGIN_LDFLAGS)
62
63 libgnunet_plugin_transport_template_la_SOURCES = \
64   plugin_transport_template.c
65 libgnunet_plugin_transport_template_la_LIBADD = \
66   $(top_builddir)/src/util/libgnunetutil.la 
67 libgnunet_plugin_transport_template_la_LDFLAGS = \
68  $(GN_PLUGIN_LDFLAGS)
69
70
71 check_PROGRAMS = \
72  test_transport_api \
73  test_plugin_transport
74 # TODO: add tests for tcp, udp, http, nat, etc.
75
76 TESTS = $(check_PROGRAMS)
77
78 test_transport_api_SOURCES = \
79  test_transport_api.c
80 test_transport_api_LDADD = \
81  $(top_builddir)/src/transport/libgnunettransport.la \
82  $(top_builddir)/src/util/libgnunetutil.la  
83
84
85 test_plugin_transport_SOURCES = \
86  test_plugin_transport.c
87 test_plugin_transport_LDADD = \
88  $(top_builddir)/src/transport/libgnunettransport.la \
89  $(top_builddir)/src/util/libgnunetutil.la  
90
91
92 EXTRA_DIST = \
93   test_transport_api_data.conf \
94   test_transport_api_peer1.conf \
95   test_transport_api_peer2.conf \
96   test_plugin_transport_data.conf