aboutsummaryrefslogtreecommitdiff
path: root/share/termcap/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'share/termcap/Makefile')
-rw-r--r--share/termcap/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/share/termcap/Makefile b/share/termcap/Makefile
new file mode 100644
index 000000000000..6cb2ab752f78
--- /dev/null
+++ b/share/termcap/Makefile
@@ -0,0 +1,29 @@
+# @(#)Makefile 8.1 (Berkeley) 6/8/93
+# $FreeBSD$
+
+# reorder gives an editor command for most common terminals
+# (in reverse order from n'th to 1'st most commonly used)
+# to move them to the front of termcap
+#
+MAN= termcap.5
+
+FILES= termcap termcap.db
+FILESDIR= ${BINDIR}/misc
+CLEANFILES+= termcap.db
+
+.include <bsd.endian.mk>
+.if ${TARGET_ENDIANNESS} == "1234"
+CAP_MKDB_ENDIAN= -l
+.elif ${TARGET_ENDIANNESS} == "4321"
+CAP_MKDB_ENDIAN= -b
+.else
+CAP_MKDB_ENDIAN=
+.endif
+
+termcap.db: termcap
+ cap_mkdb ${CAP_MKDB_ENDIAN} -f ${.TARGET:R} ${.ALLSRC}
+
+etc-termcap:
+ ${INSTALL_SYMLINK} ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
+
+.include <bsd.prog.mk>