mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 21:31:02 -05:00
17 lines
257 B
Makefile
17 lines
257 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}/misc
|
|
|
|
PACKAGE=runtime
|
|
PROG= geom
|
|
MAN= geom.8
|
|
SRCS= geom.c subr.c
|
|
|
|
NO_SHARED=NO
|
|
|
|
CFLAGS+= -DGEOM_CLASS_DIR=\"${GEOM_CLASS_DIR}\"
|
|
CFLAGS+= -I${SRCTOP}/sys -I${.CURDIR} -I${.CURDIR:H}
|
|
|
|
LIBADD= geom util
|
|
|
|
.include <bsd.prog.mk>
|