Home | History | Annotate | Line # | Download | only in ktruss
Makefile revision 1.3
      1 #	$NetBSD: Makefile,v 1.3 1999/07/28 01:56:06 enami Exp $
      2 
      3 PROG=		ktruss
      4 SRCS=		ktrace.c dump.c subr.c ioctl.c misc.c
      5 CPPFLAGS+=	-I. -I${.CURDIR}/../ktrace -I${.CURDIR}/../../sys -DKTRUSS
      6 LDSTATIC?=	-static
      7 CLEANFILES+=	misc.c misc.h ioctl.c
      8 MAN=
      9 
     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