#
# $Id: Makefile,v 1.1 1999/11/21 19:27:11 root Exp $
#
# Makefile for the SPY module
#

.PATH: /sys/kern
SRCS	= spy.c syscalls.c
CFLAGS+= -I/sys
KMOD	= spy
NOMAN	= t
KLDMOD	= t

KLDLOAD		= /sbin/kldload
KLDUNLOAD	= /sbin/kldunload

CLEANFILES+= ${KMOD}

load:
	${KLDLOAD} -v ./${KMOD}

unload:
	${KLDUNLOAD} -v -n ${KMOD}

.include <bsd.kmod.mk>
