9f988b7934
Change-Id: I0ebcc9d0168df9d26cfb0af0fce2bc894ce688af
25 lines
472 B
Makefile
25 lines
472 B
Makefile
# $NetBSD: Makefile,v 1.6 2013/01/21 20:28:38 christos Exp $
|
|
# From: $FreeBSD: src/sbin/newfs_msdos/Makefile,v 1.5 2001/03/26 14:33:18 ru Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= newfs_msdos
|
|
MAN= newfs_msdos.8
|
|
SRCS= newfs_msdos.c partutil.c mkfs_msdos.c
|
|
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
LDADD+=-lprop
|
|
DPADD+=${LIBPROP}
|
|
|
|
FSCK=${NETBSDSRCDIR}/sbin/fsck
|
|
CPPFLAGS+=-I${.CURDIR} -I${FSCK}
|
|
.PATH: ${FSCK}
|
|
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|