Configuration directive `IndirectData'.
[tinc] / src / Makefile.am
1 ## Produce this file with automake to get Makefile.in
2 # $Id: Makefile.am,v 1.4.4.1 2000/06/06 10:24:33 zarq Exp $
3
4 sbin_PROGRAMS = tincd genauth
5
6 genauth_SOURCES = genauth.c
7 tincd_SOURCES = conf.c encr.c net.c netutl.c protocol.c tincd.c
8
9 INCLUDES = -I$(top_builddir) -I$(top_srcdir)/cipher -I$(top_srcdir)/lib -I$(top_srcdir)/intl
10
11 noinst_HEADERS = conf.h encr.h net.h netutl.h protocol.h
12
13 LIBS = @LIBS@ @INTLLIBS@
14
15 tincd_LDADD = $(top_builddir)/cipher/libcipher.la \
16         $(top_builddir)/lib/libvpn.a
17
18 genauth_LDADD = $(top_builddir)/lib/libvpn.a
19
20 localedir = $(datadir)/locale
21
22 CFLAGS = @CFLAGS@ -DPKGLIBDIR=$(pkglibdir) -DCONFDIR=\"@sysconfdir@\" -DLOCALEDIR=\"$(localedir)\"