80189b3b09
variants. This allows usable file system images (i.e. those with both a shell and an editor) to be created with only one copy of the curses library. Exp-run: antoine PR: 189842 Discussed with: bapt Sponsored by: DARPA, AFRL
16 lines
339 B
Makefile
16 lines
339 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= gvinum
|
|
SRCS= gvinum.c gvinum.h geom_vinum_share.c
|
|
MAN= gvinum.8
|
|
|
|
WARNS?= 2
|
|
CFLAGS+= -I${.CURDIR}/../../sys -I${DESTDIR}/${INCLUDEDIR}/edit
|
|
|
|
DPADD= ${LIBEDIT} ${LIBTERMCAPW} ${LIBDEVSTAT} ${LIBKVM} ${LIBGEOM}
|
|
LDADD= -ledit -ltermcapw -ldevstat -lkvm -lgeom
|
|
|
|
.PATH: ${.CURDIR}/../../sys/geom/vinum
|
|
|
|
.include <bsd.prog.mk>
|