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