1 1.4 christos # $NetBSD: Makefile,v 1.4 2008/08/11 10:56:54 christos Exp $ 2 1.3 christos # From: $FreeBSD: src/sbin/newfs_msdos/Makefile,v 1.5 2001/03/26 14:33:18 ru Exp $ 3 1.1 christos 4 1.4 christos .include <bsd.own.mk> 5 1.4 christos 6 1.3 christos PROG= newfs_msdos 7 1.3 christos MAN= newfs_msdos.8 8 1.4 christos SRCS= newfs_msdos.c partutil.c 9 1.4 christos 10 1.3 christos LDADD+= -lutil 11 1.3 christos DPADD+= ${LIBUTIL} 12 1.3 christos 13 1.4 christos FSCK=${NETBSDSRCDIR}/sbin/fsck 14 1.4 christos CPPFLAGS+=-I${.CURDIR} -I${FSCK} 15 1.4 christos .PATH: ${FSCK} 16 1.4 christos 17 1.4 christos 18 1.3 christos .if ${MACHINE} == "pc98" 19 1.3 christos CFLAGS+= -DPC98 20 1.3 christos .endif 21 1.1 christos 22 1.1 christos .include <bsd.prog.mk> 23