1 2# reorder gives an editor command for most common terminals 3# (in reverse order from n'th to 1'st most commonly used) 4# to move them to the front of termcap 5# 6MAN= termcap.5 7 8PACKAGE= runtime 9FILES= termcap termcap.db 10FILESDIR= ${BINDIR}/misc 11CLEANFILES+= termcap.db 12 13.include <bsd.endian.mk> 14.include <src.tools.mk> 15 16termcap.db: termcap 17 ${CAP_MKDB_CMD} ${CAP_MKDB_ENDIAN} -f ${.TARGET:R} ${.ALLSRC} 18 19etc-termcap: 20 ${INSTALL_SYMLINK} -T "package=runtime" \ 21 ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap 22 23.include <bsd.prog.mk> 24