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