NetBSD/usr.bin/fstat/Makefile
lukem 591a968873 as suggested by chuck cranor, pull in some openbsd mods:
* display ip address details of tcp/udp connections
* display isofs details
* use %p instead of %lx in error messages

other mods by me:
* don't put \n at the end of err()/warn() format
* man page cleanups (use .Dq and .Pq as appropriate)
1999-02-18 06:09:25 +00:00

20 lines
326 B
Makefile

# $NetBSD: Makefile,v 1.11 1999/02/18 06:09:25 lukem Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= fstat
SRCS= fstat.c isofs.c
DPADD= ${LIBKVM}
LDADD= -lkvm
BINGRP= kmem
BINMODE=2555
.include <bsd.prog.mk>
# XXX
.if defined(UVM)
CPPFLAGS+= -DUVM
.endif
.if defined(PMAP_NEW)
CPPFLAGS+= -DPMAP_NEW
.endif