]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sbin/geom/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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 CFLAGS+=-I${.CURDIR} -I${.CURDIR}/core -DSTATIC_GEOM_CLASSES
15
16 DPADD=  ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} ${LIBUTIL}
17 LDADD=  -lgeom -lsbuf -lbsdxml -lutil
18
19 .include <bsd.prog.mk>
20
21 .else
22
23 SUBDIR= core class
24
25 .include <bsd.subdir.mk>
26
27 .endif