]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/geom/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sbin / geom / Makefile
1 # $FreeBSD$
2
3 .if defined(RESCUE) || defined(RELEASE_CRUNCH)
4
5 .PATH:  ${.CURDIR}/class/part \
6         ${.CURDIR}/class/label \
7         ${.CURDIR}/core \
8         ${.CURDIR}/misc
9
10 PROG=   geom
11 SRCS=   geom.c geom_label.c geom_part.c subr.c
12 NO_MAN=
13
14 WARNS?= 2
15 CFLAGS+=-I${.CURDIR} -I${.CURDIR}/core -DSTATIC_GEOM_CLASSES
16
17 DPADD=  ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} ${LIBUTIL}
18 LDADD=  -lgeom -lsbuf -lbsdxml -lutil
19
20 .include <bsd.prog.mk>
21
22 .else
23
24 SUBDIR= core class
25
26 .include <bsd.subdir.mk>
27
28 .endif