summaryrefslogtreecommitdiff
path: root/share/termcap/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 /share/termcap/Makefile
initial import of NetBSD tree
Diffstat (limited to 'share/termcap/Makefile')
-rw-r--r--share/termcap/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/share/termcap/Makefile b/share/termcap/Makefile
new file mode 100644
index 00000000000..78a746b6c85
--- /dev/null
+++ b/share/termcap/Makefile
@@ -0,0 +1,21 @@
+# from: @(#)Makefile 5.14 (Berkeley) 9/15/92
+# $Id: Makefile,v 1.1 1995/10/18 08:44:48 deraadt Exp $
+
+MAN= termcap.5
+
+CLEANFILES= termcap.db
+all: termcap.db
+
+termcap.db: termcap.src
+ cap_mkdb -f termcap ${.ALLSRC}
+
+realinstall:
+ install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap.db \
+ ${DESTDIR}${BINDIR}/misc/termcap.db
+ install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/termcap.src \
+ ${DESTDIR}${BINDIR}/misc/termcap
+ install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \
+ ${DESTDIR}${BINDIR}/misc/map3270
+
+
+.include <bsd.prog.mk>