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 nodist_tincd_SOURCES = device.c
15
16 DEFAULT_INCLUDES =
17
18 INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib
19
20 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       \
21         protocol.h route.h rsa.h rsagen.h subnet.h
22
23 LIBS = @LIBS@ @LIBGCRYPT_LIBS@ @LIBINTL@
24
25 tincd_LDADD = \
26         $(top_builddir)/lib/libvpn.a
27
28 tincctl_LDADD = \
29         $(top_builddir)/lib/libvpn.a
30
31 localedir = $(datadir)/locale
32
33 AM_CFLAGS = @CFLAGS@ -DCONFDIR=\"$(sysconfdir)\" -DLOCALEDIR=\"$(localedir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -DSBINDIR=\"$(sbindir)\"
34
35 dist-hook:
36         rm -f `find . -type l`