Merge branch 'master' into 1.1
[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 tincctl
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 = cipher.c conf.c connection.c control.c crypto.c digest.c edge.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 rsa.c subnet.c tincd.c
11
12 tincctl_SOURCES = tincctl.c rsagen.c
13
14 if TUNEMU
15 tincd_SOURCES += bsd/tunemu.c
16 endif
17
18 nodist_tincd_SOURCES = device.c
19
20 DEFAULT_INCLUDES =
21
22 INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib
23
24 noinst_HEADERS = cipher.h conf.h connection.h control.h crypto.h device.h digest.h edge.h graph.h logger.h meta.h net.h netutl.h node.h process.h       \
25         protocol.h route.h rsa.h rsagen.h subnet.h bsd/tunemu.h
26
27 LIBS = @LIBS@ @LIBGCRYPT_LIBS@ @LIBINTL@
28
29 if TUNEMU
30 LIBS += -lpcap
31 endif
32
33 tincd_LDADD = \
34         $(top_builddir)/lib/libvpn.a
35
36 tincctl_LDADD = \
37         $(top_builddir)/lib/libvpn.a
38
39 localedir = $(datadir)/locale
40
41 AM_CFLAGS = @CFLAGS@ -DCONFDIR=\"$(sysconfdir)\" -DLOCALEDIR=\"$(localedir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -DSBINDIR=\"$(sbindir)\"
42
43 dist-hook:
44         rm -f `find . -type l`