Home | History | Annotate | Line # | Download | only in ktruss
Makefile revision 1.6
      1 #	$NetBSD: Makefile,v 1.6 2000/11/13 21:48:34 jdolecek Exp $
      2 
      3 PROG=		ktruss
      4 SRCS=		ktrace.c dump.c subr.c ioctl.c misc.c setemul.c
      5 CPPFLAGS+=	-I. -I${.CURDIR}/../ktrace -I${.CURDIR}/../../sys \
      6 		-I${.CURDIR}/../kdump -DKTRUSS
      7 CLEANFILES+=	misc.c misc.h ioctl.c
      8 MAN=
      9 WFORMAT=1
     10 dump.c: misc.h
     11 misc.c misc.h: ${DESTDIR}/usr/include/sys/errno.h \
     12 	       ${DESTDIR}/usr/include/sys/signal.h
     13 	${.CURDIR}/makeerrnos.sh \
     14 	    ${DESTDIR}/usr/include/sys/errno.h \
     15 	    ${DESTDIR}/usr/include/sys/signal.h misc
     16 
     17 .include "${.CURDIR}/../kdump/Makefile.ioctl-c"
     18 .include <bsd.prog.mk>
     19 
     20 .PATH: ${.CURDIR}/../ktrace ${.CURDIR}/../kdump
     21