blob: 2217f918fd14204a92a74d66e1cd55e39b86ca4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile,v 1.1 2014/12/23 17:16:02 deraadt Exp $
PROG= fsck_msdos
MAN= fsck_msdos.8
SRCS= main.c check.c boot.c fat.c dir.c fsutil.c
.PATH: ${.CURDIR}/../../../sbin/fsck
CFLAGS+= -I${.CURDIR}/../../../sbin/fsck
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.PATH: ${.CURDIR}/../../../sbin/fsck_msdos
.include <bsd.prog.mk>
|