]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sbin/bsdlabel/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sbin / bsdlabel / Makefile
1 #       @(#)Makefile    8.2 (Berkeley) 3/17/94
2 # $FreeBSD$
3
4 .PATH: ${.CURDIR}/../../sys/geom
5
6 PROG=   bsdlabel
7 SRCS=   bsdlabel.c geom_bsd_enc.c
8 MAN+=   bsdlabel.8
9
10 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
11 LINKS=  ${BINDIR}/bsdlabel ${BINDIR}/disklabel
12 MLINKS= bsdlabel.8 disklabel.8
13 .endif
14
15 DPADD=  ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF}
16 LDADD=  -lgeom -lbsdxml -lsbuf
17
18 .include <bsd.prog.mk>