summaryrefslogtreecommitdiff
path: root/usr.bin/vgrind/Makefile
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-10-18 08:53:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-10-18 08:53:40 +0000
commitd6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch)
treeece253b876159b39c620e62b6c9b1174642e070e /usr.bin/vgrind/Makefile
initial import of NetBSD tree
Diffstat (limited to 'usr.bin/vgrind/Makefile')
-rw-r--r--usr.bin/vgrind/Makefile25
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>