Makefile revision 114569
1#	@(#)Makefile	8.2 (Berkeley) 3/17/94
2# $FreeBSD: head/sbin/bsdlabel/Makefile 114569 2003-05-03 08:04:24Z phk $
3
4PROG=	bsdlabel
5SRCS=	bsdlabel.c geom_bsd_enc.c
6#MAN+=	bsdlabel.5
7MAN+=	bsdlabel.8
8
9DDADD=  ${LIBGEOM}
10LDADD=  -lgeom -lbsdxml -lsbuf
11
12.if ${MACHINE} == "pc98"
13CFLAGS+= -DPC98
14.endif
15
16.PATH:  ${.CURDIR}/../../sys/geom
17
18.include <bsd.prog.mk>
19
20test:	${PROG}
21	sh ${.CURDIR}/runtest.sh
22
23testx:	${PROG}
24	sh -x ${.CURDIR}/runtest.sh
25