1 ## Produce this file with automake to get Makefile.in
3 sbin_PROGRAMS = tincd genauth
5 genauth_SOURCES = genauth.c
6 tincd_SOURCES = conf.c encr.c net.c netutl.c protocol.c tincd.c
8 INCLUDES = -I$(top_builddir) -I$(top_srcdir)/cipher -I$(top_srcdir)/lib
10 noinst_HEADERS = conf.h encr.h net.h netutl.h protocol.h
14 tincd_LDADD = $(top_builddir)/cipher/libcipher.la \
15 $(top_builddir)/lib/libvpn.a
17 genauth_LDADD = $(top_builddir)/lib/libvpn.a
19 localedir = $(datadir)/locale
21 CFLAGS = @CFLAGS@ -DPKGLIBDIR=$(pkglibdir) -DCONFDIR=\"@sysconfdir@\" -DLOCALEDIR=\"$(localedir)\"