2004-05-20 10:09:56 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2008-06-05 15:24:10 +00:00
|
|
|
.if defined(RESCUE) || defined(RELEASE_CRUNCH)
|
2007-11-04 00:32:54 +00:00
|
|
|
|
2008-03-05 23:31:49 +00:00
|
|
|
.PATH: ${.CURDIR}/class/part \
|
|
|
|
${.CURDIR}/class/label \
|
|
|
|
${.CURDIR}/core \
|
|
|
|
${.CURDIR}/misc
|
2007-11-04 00:32:54 +00:00
|
|
|
|
|
|
|
PROG= geom
|
2008-03-05 23:31:49 +00:00
|
|
|
SRCS= geom.c geom_label.c geom_part.c subr.c
|
2014-04-13 05:21:56 +00:00
|
|
|
MAN=
|
2007-11-04 00:32:54 +00:00
|
|
|
|
2009-10-19 16:00:24 +00:00
|
|
|
WARNS?= 2
|
2008-06-04 20:07:59 +00:00
|
|
|
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/core -DSTATIC_GEOM_CLASSES
|
2007-11-04 00:32:54 +00:00
|
|
|
|
2014-11-25 11:23:12 +00:00
|
|
|
LIBADD= geom util
|
2007-11-04 00:32:54 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
|
|
|
|
.else
|
|
|
|
|
2004-05-20 10:09:56 +00:00
|
|
|
SUBDIR= core class
|
|
|
|
|
|
|
|
.include <bsd.subdir.mk>
|
2007-11-04 00:32:54 +00:00
|
|
|
|
|
|
|
.endif
|