Home | History | Annotate | Line # | Download | only in mscdlabel
Makefile revision 1.6
      1 # $NetBSD: Makefile,v 1.6 2007/05/28 12:06:38 tls Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 USE_FORT?= yes	# reads potentially untrustworthy data
      6 
      7 PROG=	mscdlabel
      8 SRCS=	main.c dkcksum.c iso9660.c
      9 DPADD+=	${LIBUTIL}
     10 LDADD+=	-lutil
     11 MAN=	mscdlabel.8
     12 
     13 DISKLABEL_SRC=	${NETBSDSRCDIR}/sbin/disklabel
     14 
     15 .PATH:	${DISKLABEL_SRC}
     16 CPPFLAGS+=	-I${DISKLABEL_SRC}
     17 
     18 .if ${HAVE_GCC} == 4
     19 COPTS.iso9660.c+=	-Wno-pointer-sign
     20 .endif
     21 
     22 .include <bsd.prog.mk>
     23