22289a8c3d
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
18 lines
257 B
Makefile
18 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>
|