mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-06 13:09:50 +00:00
a16f9b367d
has a subset of the classes compiled-in.
24 lines
355 B
Makefile
24 lines
355 B
Makefile
# $FreeBSD$
|
|
|
|
.if defined(RESCUE)
|
|
|
|
.PATH: ${.CURDIR}/class/part ${.CURDIR}/core ${.CURDIR}/misc
|
|
|
|
PROG= geom
|
|
SRCS= geom.c geom_part.c subr.c
|
|
|
|
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/core
|
|
|
|
DPADD= ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} ${LIBUTIL}
|
|
LDADD= -lgeom -lsbuf -lbsdxml -lutil
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.else
|
|
|
|
SUBDIR= core class
|
|
|
|
.include <bsd.subdir.mk>
|
|
|
|
.endif
|