501fdf66953875873d88289e60dc36ea26308961
[tinc] / src / Makefile.am
1 ## Produce this file with automake to get Makefile.in
2 # $Id: Makefile.am,v 1.4.4.33 2003/08/02 15:13:08 guus Exp $
3
4 sbin_PROGRAMS = tincd
5
6 EXTRA_DIST = linux/device.c bsd/device.c solaris/device.c cygwin/device.c mingw/device.c mingw/common.h raw_socket/device.c uml_socket/device.c
7
8 tincd_SOURCES = conf.c connection.c edge.c event.c graph.c logger.c meta.c net.c net_packet.c net_setup.c       \
9         net_socket.c netutl.c node.c process.c protocol.c protocol_auth.c protocol_edge.c protocol_misc.c       \
10         protocol_key.c protocol_subnet.c route.c subnet.c tincd.c
11
12 if TUNEMU
13 tincd_SOURCES += bsd/tunemu.c
14 endif
15
16 nodist_tincd_SOURCES = device.c
17
18 DEFAULT_INCLUDES =
19
20 INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib
21
22 noinst_HEADERS = conf.h connection.h device.h edge.h event.h graph.h logger.h meta.h net.h netutl.h node.h process.h    \
23         protocol.h route.h subnet.h bsd/tunemu.h
24
25 LIBS = @LIBS@ @LIBINTL@
26
27 if TUNEMU
28 LIBS += -lpcap
29 endif
30
31 tincd_LDADD = \
32         $(top_builddir)/lib/libvpn.a
33
34 localedir = $(datadir)/locale
35
36 AM_CFLAGS = @CFLAGS@ -DCONFDIR=\"$(sysconfdir)\" -DLOCALEDIR=\"$(localedir)\" -DLOCALSTATEDIR=\"$(localstatedir)\"
37
38 dist-hook:
39         rm -f `find . -type l`