06e88916ef
find out if files on msdosfs and cd9660 filestores are open. There was also a movement of some common things to a header, a small cleanup. PR: bin/16364 bin/7043 Submitted by: Peter Edwards <peter.edwards@openet-telecom.com>
14 lines
220 B
Makefile
14 lines
220 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= fstat
|
|
SRCS= cd9660.c fstat.c msdosfs.c
|
|
CFLAGS+=-Wall
|
|
CFLAGS+=-I${.CURDIR}/../../sys
|
|
DPADD= ${LIBKVM}
|
|
LDADD= -lkvm
|
|
BINGRP= kmem
|
|
BINMODE=2555
|
|
|
|
.include <bsd.prog.mk>
|