e5e6464767
- parser now uses yacc/lex (there'll be no symbol conflict). - outbound policy and inbound policy is now separate - policy specification for tunnel SA is improved - api changed, bump shlib major XXX some of programs will become not buildable - will commit shortly
25 lines
569 B
Makefile
25 lines
569 B
Makefile
# $NetBSD: Makefile,v 1.3 2000/01/31 14:15:30 itojun Exp $
|
|
|
|
LIB= ipsec
|
|
CFLAGS+=-g
|
|
CPPFLAGS+=-DIPSEC_DEBUG -DIPSEC -DINET6 -I. -DYY_NO_UNPUT
|
|
|
|
.PATH: ${.CURDIR}/../../sys/netkey
|
|
SRCS= pfkey.c pfkey_dump.c
|
|
SRCS+= ipsec_strerror.c policy_parse.y policy_token.l
|
|
SRCS+= ipsec_get_policylen.c ipsec_dump_policy.c
|
|
SRCS+= key_debug.c
|
|
LPREFIX+=__libyy
|
|
YPREFIX+=__libyy
|
|
YHEADER=1
|
|
|
|
#LFLAGS+= -olex.yy.c
|
|
|
|
MAN= ipsec_set_policy.3 ipsec_strerror.3
|
|
MLINKS+=ipsec_set_policy.3 ipsec_get_policylen.3 \
|
|
ipsec_set_policy.3 ipsec_dump_policy.3
|
|
|
|
CLEANFILES+= y.tab.h
|
|
|
|
.include <bsd.lib.mk>
|