NetBSD/usr.sbin/mscdlabel/Makefile

23 lines
426 B
Makefile
Raw Normal View History

2007-05-28 16:06:17 +04:00
# $NetBSD: Makefile,v 1.6 2007/05/28 12:06:38 tls Exp $
2002-09-18 07:54:26 +04:00
.include <bsd.own.mk>
2007-05-28 16:06:17 +04:00
USE_FORT?= yes # reads potentially untrustworthy data
PROG= mscdlabel
SRCS= main.c dkcksum.c iso9660.c
DPADD+= ${LIBUTIL}
LDADD+= -lutil
MAN= mscdlabel.8
2002-09-18 07:54:26 +04:00
DISKLABEL_SRC= ${NETBSDSRCDIR}/sbin/disklabel
.PATH: ${DISKLABEL_SRC}
CPPFLAGS+= -I${DISKLABEL_SRC}
.if ${HAVE_GCC} == 4
COPTS.iso9660.c+= -Wno-pointer-sign
.endif
.include <bsd.prog.mk>