5fc62085dd
All of them are needed to be able to boot to single user and be able to repair a existing FreeBSD installation so put them directly into FreeBSD-runtime. Reviewed by: bapt, gjb Differential Revision: https://reviews.freebsd.org/D21503
25 lines
547 B
Makefile
25 lines
547 B
Makefile
# @(#)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
|
|
|
|
PACKAGE= runtime
|
|
FILES= termcap termcap.db
|
|
FILESDIR= ${BINDIR}/misc
|
|
CLEANFILES+= termcap.db
|
|
CONFS= termcap.small
|
|
|
|
.include <bsd.endian.mk>
|
|
|
|
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>
|