Home | History | Annotate | Line # | Download | only in newfs_msdos
      1  1.6  christos # $NetBSD: Makefile,v 1.6 2013/01/21 20:28:38 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.6  christos SRCS=	newfs_msdos.c partutil.c mkfs_msdos.c
      9  1.4  christos 
     10  1.3  christos LDADD+= -lutil
     11  1.3  christos DPADD+= ${LIBUTIL}
     12  1.3  christos 
     13  1.5      haad LDADD+=-lprop
     14  1.5      haad DPADD+=${LIBPROP}
     15  1.5      haad 
     16  1.4  christos FSCK=${NETBSDSRCDIR}/sbin/fsck
     17  1.4  christos CPPFLAGS+=-I${.CURDIR} -I${FSCK}
     18  1.4  christos .PATH:  ${FSCK}
     19  1.4  christos 
     20  1.4  christos 
     21  1.3  christos .if ${MACHINE} == "pc98"
     22  1.3  christos CFLAGS+= -DPC98
     23  1.3  christos .endif
     24  1.1  christos 
     25  1.1  christos .include <bsd.prog.mk>
     26