]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/geom/Makefile
- Make geom commands handle multiple library paths in the GEOM_LIBRARY_PATH
[FreeBSD/FreeBSD.git] / sbin / geom / Makefile
1 # $FreeBSD$
2
3 .if defined(RESCUE)
4
5 .PATH:  ${.CURDIR}/class/part ${.CURDIR}/core ${.CURDIR}/misc
6
7 PROG=   geom
8 SRCS=   geom.c geom_part.c subr.c
9
10 CFLAGS+=-I${.CURDIR} -I${.CURDIR}/core
11
12 DPADD=  ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} ${LIBUTIL}
13 LDADD=  -lgeom -lsbuf -lbsdxml -lutil
14
15 .include <bsd.prog.mk>
16
17 .else
18
19 SUBDIR= core class
20
21 .include <bsd.subdir.mk>
22
23 .endif