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