1 1.1 thorpej # $NetBSD: Makefile,v 1.1 2005/02/19 16:55:05 thorpej Exp $ 2 1.1 thorpej 3 1.1 thorpej WARNS= 0 # Will be fixed later 4 1.1 thorpej 5 1.1 thorpej .include <bsd.own.mk> 6 1.1 thorpej 7 1.1 thorpej PROG= racoonctl 8 1.1 thorpej SRCS= racoonctl.c str2val.c kmpstat.c vmbuf.c sockmisc.c misc.c 9 1.1 thorpej MAN= racoonctl.8 10 1.1 thorpej 11 1.1 thorpej DIST= ${NETBSDSRCDIR}/crypto/dist/ipsec-tools 12 1.1 thorpej CFLAGS+=-g 13 1.1 thorpej CPPFLAGS+= -I${DIST}/src/racoon -I${DIST}/src/libipsec \ 14 1.1 thorpej -I${NETBSDSRCDIR}/lib/libipsec \ 15 1.1 thorpej -DIPSEC_DEBUG -DHAVE_CONFIG_H \ 16 1.1 thorpej -DADMINPORTDIR=\"/var/racoon\" 17 1.1 thorpej LDADD+= -lipsec 18 1.1 thorpej DPADD+= ${LIBIPSEC} 19 1.1 thorpej CLEANFILES+= racoonctl.cat8 20 1.1 thorpej 21 1.1 thorpej .PATH: ${NETBSDSRCDIR}/lib/libipsec ${DIST}/src/racoon 22 1.1 thorpej 23 1.1 thorpej .include <bsd.prog.mk> 24 1.1 thorpej 25