]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/bsdlabel/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.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>