diff options
author | le <le@FreeBSD.org> | 2004-06-12 21:22:47 +0000 |
---|---|---|
committer | le <le@FreeBSD.org> | 2004-06-12 21:22:47 +0000 |
commit | 74769ce0e6dacd18411f21c74ad8bda658ec63cd (patch) | |
tree | d56b74c13e28a84034d07d19446ba1ed93bb1518 /sbin/gvinum/Makefile | |
parent | dc91f66bc8bbcb01954862201b982c90f7cc55aa (diff) | |
download | FreeBSD-src-74769ce0e6dacd18411f21c74ad8bda658ec63cd.zip FreeBSD-src-74769ce0e6dacd18411f21c74ad8bda658ec63cd.tar.gz |
Add gvinum, the geom_vinum userland tool.
Diffstat (limited to 'sbin/gvinum/Makefile')
-rw-r--r-- | sbin/gvinum/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sbin/gvinum/Makefile b/sbin/gvinum/Makefile new file mode 100644 index 0000000..f56580d --- /dev/null +++ b/sbin/gvinum/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ + +PROG= gvinum +SRCS= gvinum.c gvinum.h geom_vinum_share.c +NOMAN= notyet + +CFLAGS+= -I${.CURDIR}/../../sys + +DPADD= ${LIBREADLINE} ${LIBTERMCAP} ${LIBDEVSTAT} ${LIBKVM} ${LIBGEOM} +LDADD= -lreadline -ltermcap -ldevstat -lkvm -lgeom + +.PATH: ${.CURDIR}/../../sys/geom/vinum + +.include <bsd.prog.mk> |