aboutsummaryrefslogtreecommitdiff
path: root/src/tun
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-01-17 19:00:11 +0000
committerChristian Grothoff <christian@grothoff.org>2012-01-17 19:00:11 +0000
commit87509e6096da2f4c7a8359da338574f939d01f13 (patch)
tree2f81f3e9be5dfc0a4241e85e862bea65d1503bfc /src/tun
parent4d899684274d4d5d0ce68c897acafc3d6d5ea3ab (diff)
downloadgnunet-87509e6096da2f4c7a8359da338574f939d01f13.tar.gz
gnunet-87509e6096da2f4c7a8359da338574f939d01f13.zip
-starting TUN lib
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