NetBSD/share/termcap/Makefile

29 lines
783 B
Makefile
Raw Normal View History

1993-07-31 19:17:49 +04:00
# from: @(#)Makefile 5.14 (Berkeley) 9/15/92
# $Id: Makefile,v 1.13 1994/02/10 01:55:19 cgd Exp $
1993-03-21 12:45:37 +03:00
# 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
#
MAN5= termcap.0
CLEANFILES= termcap termcap.db
1993-05-26 13:53:23 +04:00
all: termcap termcap.db
1993-03-21 12:45:37 +03:00
termcap: reorder termcap.src
1994-02-02 05:37:07 +03:00
ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder > /dev/null
1993-03-21 12:45:37 +03:00
termcap.db: termcap
cap_mkdb termcap
realinstall:
1993-07-18 23:06:45 +04:00
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap \
${DESTDIR}${BINDIR}/misc
1993-07-18 23:06:45 +04:00
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap.db \
1993-03-21 12:45:37 +03:00
${DESTDIR}${BINDIR}/misc
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \
${DESTDIR}${BINDIR}/misc
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>