Home | History | Annotate | Line # | Download | only in newfs_msdos
Makefile revision 1.3.34.1
      1       1.3  christos # $NetBSD: Makefile,v 1.3.34.1 2008/09/28 11:17:14 mjf 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.3.34.1       mjf .include <bsd.own.mk>
      5  1.3.34.1       mjf 
      6       1.3  christos PROG=	newfs_msdos
      7       1.3  christos MAN=	newfs_msdos.8
      8  1.3.34.1       mjf SRCS=	newfs_msdos.c partutil.c
      9  1.3.34.1       mjf 
     10       1.3  christos LDADD+= -lutil
     11       1.3  christos DPADD+= ${LIBUTIL}
     12       1.3  christos 
     13  1.3.34.1       mjf FSCK=${NETBSDSRCDIR}/sbin/fsck
     14  1.3.34.1       mjf CPPFLAGS+=-I${.CURDIR} -I${FSCK}
     15  1.3.34.1       mjf .PATH:  ${FSCK}
     16  1.3.34.1       mjf 
     17  1.3.34.1       mjf 
     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