a2a5557d65
kmem accessors, allowing them to be used with crash dumps as well as live systems, now.
20 lines
443 B
Makefile
20 lines
443 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/ipfilter ${.CURDIR}/../../contrib/ipfilter/man
|
|
|
|
PROG= ipnat
|
|
MAN= ipnat.1 ipnat.4 ipnat.5
|
|
MLINKS= ipnat.5 ipnat.conf.5
|
|
SRCS= ipnat.c kmem.c natparse.c common.c
|
|
CFLAGS+=-DUSE_INET6 -DIPL_NAME=\"/dev/ipl\"
|
|
CFLAGS+=-I${.CURDIR}/../../sys/contrib/ipfilter/netinet
|
|
CFLAGS+=-I${.CURDIR}/../../contrib/ipfilter
|
|
WARNS= 0
|
|
|
|
DPADD= ${LIBKVM}
|
|
LDADD= -lkvm
|
|
|
|
MAINTAINER= guido@freebsd.org
|
|
|
|
.include <bsd.prog.mk>
|