Home | History | Annotate | Line # | Download | only in ktruss
Makefile revision 1.8
      1 #	$NetBSD: Makefile,v 1.8 2000/12/30 14:54:40 sommerfeld 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 LDSTATIC?=-static
      8 CLEANFILES+=	misc.c misc.h ioctl.c
      9 MAN=
     10 WFORMAT=1
     11 dump.c: misc.h
     12 misc.c misc.h: ${DESTDIR}/usr/include/sys/errno.h \
     13 	       ${DESTDIR}/usr/include/sys/signal.h
     14 	${.CURDIR}/makeerrnos.sh \
     15 	    ${DESTDIR}/usr/include/sys/errno.h \
     16 	    ${DESTDIR}/usr/include/sys/signal.h misc
     17 
     18 .NOTPARALLEL:
     19 
     20 .include "${.CURDIR}/../kdump/Makefile.ioctl-c"
     21 .include <bsd.prog.mk>
     22 
     23 .PATH: ${.CURDIR}/../ktrace ${.CURDIR}/../kdump
     24