Home | History | Annotate | Line # | Download | only in ktruss
Makefile revision 1.9
      1 #	$NetBSD: Makefile,v 1.9 2001/01/11 14:25:27 enami 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.c: misc.h
     12 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 # XXX It looks like .NOTPARALLEL doesn't works.
     19 .NOTPARALLEL:
     20 
     21 .include "${.CURDIR}/../kdump/Makefile.ioctl-c"
     22 .include <bsd.prog.mk>
     23 
     24 .PATH: ${.CURDIR}/../ktrace ${.CURDIR}/../kdump
     25