diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /usr.bin/vgrind/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'usr.bin/vgrind/Makefile')
-rw-r--r-- | usr.bin/vgrind/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/usr.bin/vgrind/Makefile b/usr.bin/vgrind/Makefile new file mode 100644 index 00000000000..8e41d6dcf10 --- /dev/null +++ b/usr.bin/vgrind/Makefile @@ -0,0 +1,25 @@ +# $NetBSD: Makefile,v 1.5 1994/12/23 21:11:56 pk Exp $ +# @(#)Makefile 8.1 (Berkeley) 6/9/93 + +PROG= vfontedpr +SRCS= regexp.c vfontedpr.c +MAN= vgrind.1 vgrindefs.5 +BINDIR= /usr/libexec +CLEANFILES+=vgrindefs.src.db + +all: vfontedpr vgrindefs.src.db + +vgrindefs.src.db: vgrindefs.src + cap_mkdb -f vgrindefs.src ${.CURDIR}/vgrindefs.src + +beforeinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/vgrind.sh ${DESTDIR}/usr/bin/vgrind + install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/vgrindefs.src \ + ${DESTDIR}/usr/share/misc/vgrindefs + install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + vgrindefs.src.db ${DESTDIR}/usr/share/misc/vgrindefs.db + install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/tmac.vgrind \ + ${DESTDIR}/usr/share/tmac + +.include <bsd.prog.mk> |