X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2FMakefile.am;h=23bbfbcd2e7a1d2c6009c56002e8666d76693269;hb=8733110dec28967d67a3c00d00cdfa608dbeb9c4;hp=c9c1ac90a99c355fc127dfb16cac95316a0f60cf;hpb=6362b12df725044f3404faceff113e469d8ac860;p=tinc diff --git a/src/Makefile.am b/src/Makefile.am index c9c1ac90..23bbfbcd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,31 +1,47 @@ ## Produce this file with automake to get Makefile.in -# $Id: Makefile.am,v 1.4.4.33 2003/08/02 15:13:08 guus Exp $ -sbin_PROGRAMS = tincd +sbin_PROGRAMS = tincd tincctl -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 +EXTRA_DIST = linux bsd solaris cygwin mingw raw_socket uml_socket openssl gcrypt -tincd_SOURCES = conf.c connection.c edge.c tevent.c graph.c logger.c meta.c net.c net_packet.c net_setup.c \ - net_socket.c netutl.c node.c process.c protocol.c protocol_auth.c protocol_edge.c protocol_misc.c \ +tincd_SOURCES = \ + utils.c getopt.c getopt1.c list.c splay_tree.c dropin.c fake-getaddrinfo.c fake-getnameinfo.c \ + buffer.c conf.c connection.c control.c edge.c graph.c logger.c meta.c net.c net_packet.c net_setup.c \ + net_socket.c netutl.c node.c process.c protocol.c protocol_auth.c protocol_edge.c protocol_misc.c \ protocol_key.c protocol_subnet.c route.c subnet.c tincd.c -nodist_tincd_SOURCES = device.c +nodist_tincd_SOURCES = \ + device.c cipher.c crypto.c digest.c rsa.c -DEFAULT_INCLUDES = +tincctl_SOURCES = \ + utils.c getopt.c getopt1.c dropin.c \ + list.c tincctl.c top.c + +nodist_tincctl_SOURCES = \ + rsagen.c + +if TUNEMU +tincd_SOURCES += bsd/tunemu.c +endif -INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib +tincctl_LDADD = $(CURSES_LIBS) + +DEFAULT_INCLUDES = -noinst_HEADERS = conf.h connection.h device.h edge.h tevent.h graph.h logger.h meta.h net.h netutl.h node.h process.h \ - protocol.h route.h subnet.h +INCLUDES = @INCLUDES@ -I$(top_builddir) -LIBS = @LIBS@ @LIBINTL@ +noinst_HEADERS = \ + xalloc.h utils.h getopt.h list.h splay_tree.h dropin.h fake-getaddrinfo.h fake-getnameinfo.h fake-gai-errnos.h ipv6.h ipv4.h ethernet.h \ + buffer.h cipher.h conf.h connection.h control.h control_common.h crypto.h device.h digest.h edge.h graph.h logger.h meta.h net.h netutl.h node.h process.h \ + protocol.h route.h rsa.h rsagen.h subnet.h tincctl.h top.h bsd/tunemu.h -tincd_LDADD = \ - $(top_builddir)/lib/libvpn.a +LIBS = @LIBS@ @LIBGCRYPT_LIBS@ -localedir = $(datadir)/locale +if TUNEMU +LIBS += -lpcap +endif -AM_CFLAGS = @CFLAGS@ -DCONFDIR=\"$(sysconfdir)\" -DLOCALEDIR=\"$(localedir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" +AM_CFLAGS = -DCONFDIR=\"$(sysconfdir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -DSBINDIR=\"$(sbindir)\" dist-hook: rm -f `find . -type l`