aboutsummaryrefslogtreecommitdiff
path: root/src/tun
diff options
context:
space:
mode:
Diffstat (limited to 'src/tun')
-rw-r--r--src/tun/Makefile.am20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tun/Makefile.am b/src/tun/Makefile.am
new file mode 100644
index 000000000..15b0d6205
--- /dev/null
+++ b/src/tun/Makefile.am
@@ -0,0 +1,20 @@
1INCLUDES = -I$(top_srcdir)/src/include
2
3if MINGW
4 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
5endif
6
7if USE_COVERAGE
8 AM_CFLAGS = --coverage -O0
9 XLIB = -lgcov
10endif
11
12lib_LTLIBRARIES = libgnunettun.la
13
14libgnunettun_la_SOURCES = \
15 tun.c
16libgnunettun_la_LIBADD = \
17 $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
18libgnunethello_la_LDFLAGS = \
19 $(GN_LIB_LDFLAGS)
20