1e925017b3
2) Use %p to print a pointer. 3) Use longs for fileids and ino to avoid comparing signed and unsigned. 4) Make the KVM_READ macro a little more cranky. 5) Set WARNS while I'm here.
13 lines
185 B
Makefile
13 lines
185 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= fstat
|
|
SRCS= cd9660.c fstat.c msdosfs.c
|
|
DPADD= ${LIBKVM}
|
|
LDADD= -lkvm
|
|
BINGRP= kmem
|
|
BINMODE=2555
|
|
WARNS?= 6
|
|
|
|
.include <bsd.prog.mk>
|