NetBSD/usr.sbin/ldpd/Makefile
kefren 6cb0642362 * add initial IPv6 support - still incomplete at this moment, but it sends
out there IPv6 hellos. Interoperability not yet tested.
* sync man page with reality
2012-11-12 18:39:00 +00:00

30 lines
406 B
Makefile

# $NetBSD: Makefile,v 1.4 2012/11/12 18:39:00 kefren Exp $
.include <bsd.own.mk>
PROG= ldpd
MAN= ldpd.8
SRCS= conffile.c \
fsm.c \
label.c \
ldp_command.c \
ldp_errors.c \
ldp_peer.c \
main.c \
mpls_interface.c \
mpls_routes.c \
notifications.c \
pdu.c \
socketops.c \
tlv.c \
tlv_stack.c
LDADD+= -lcrypt
.if (${USE_INET6} != "no")
CPPFLAGS+=-DINET6
.endif
.include <bsd.prog.mk>