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