1# $FreeBSD: releng/11.0/sbin/geom/Makefile 298107 2016-04-16 07:45:30Z gjb $
2
3PACKAGE=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
11PROG=	geom
12SRCS=	geom.c geom_label.c geom_part.c subr.c
13MAN=
14
15WARNS?=	2
16CFLAGS+=-I${.CURDIR} -I${.CURDIR}/core -DSTATIC_GEOM_CLASSES
17
18LIBADD=	geom util
19
20.include <bsd.prog.mk>
21
22.else
23
24SUBDIR=	core class
25
26.include <bsd.subdir.mk>
27
28.endif
29