]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/geom/Makefile
Upgrade Unbound to 1.6.2. More to follow.
[FreeBSD/FreeBSD.git] / sbin / geom / Makefile
1 # $FreeBSD$
2
3 PACKAGE=runtime
4 .if defined(RESCUE) || defined(RELEASE_CRUNCH)
5
6 .PATH:  ${.CURDIR}/class/part \
7         ${.CURDIR}/class/label \
8         ${.CURDIR}/core \
9         ${.CURDIR}/misc
10
11 PROG=   geom
12 SRCS=   geom.c geom_label.c geom_part.c subr.c
13 MAN=
14
15 WARNS?= 2
16 CFLAGS+=-I${.CURDIR} -I${.CURDIR}/core -DSTATIC_GEOM_CLASSES
17
18 LIBADD= geom util
19
20 .include <bsd.prog.mk>
21
22 .else
23
24 SUBDIR= core class
25
26 .include <bsd.subdir.mk>
27
28 .endif