tinc/src/Makefile.am

46 lines
1.1 KiB
Makefile
Raw Normal View History

2019-08-26 11:44:36 +00:00
## Produce this file with automake to get Makefile.in
sbin_PROGRAMS = tincd
2019-08-26 11:44:41 +00:00
EXTRA_DIST = linux/device.c bsd/device.c solaris/device.c cygwin/device.c mingw/device.c mingw/common.h
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
tincd_SOURCES = conf.c connection.c edge.c event.c graph.c logger.c meta.c net.c net_packet.c net_setup.c \
2019-08-26 11:44:36 +00:00
net_socket.c netutl.c node.c process.c protocol.c protocol_auth.c protocol_edge.c protocol_misc.c \
2019-08-26 11:44:41 +00:00
protocol_key.c protocol_subnet.c route.c subnet.c tincd.c \
dummy_device.c raw_socket_device.c
if UML
tincd_SOURCES += uml_device.c
endif
if VDE
tincd_SOURCES += vde_device.c
endif
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if TUNEMU
tincd_SOURCES += bsd/tunemu.c
endif
2019-08-26 11:44:36 +00:00
nodist_tincd_SOURCES = device.c
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:36 +00:00
DEFAULT_INCLUDES =
INCLUDES = @INCLUDES@ -I$(top_builddir) -I$(top_srcdir)/lib
noinst_HEADERS = conf.h connection.h device.h edge.h event.h graph.h logger.h meta.h net.h netutl.h node.h process.h \
2019-08-26 11:44:38 +00:00
protocol.h route.h subnet.h bsd/tunemu.h
LIBS = @LIBS@
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
if TUNEMU
LIBS += -lpcap
endif
2019-08-26 11:44:36 +00:00
tincd_LDADD = \
$(top_builddir)/lib/libvpn.a
2019-08-26 11:44:41 +00:00
AM_CFLAGS = -DCONFDIR=\"$(sysconfdir)\" -DLOCALSTATEDIR=\"$(localstatedir)\"
2019-08-26 11:44:36 +00:00
dist-hook:
rm -f `find . -type l`