NetBSD/share/termcap/Makefile

33 lines
926 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.11 1993/09/30 23:31:43 jtc 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
# ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder > /dev/null
-ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder > /dev/null
1993-03-21 12:45:37 +03:00
termcap.db: termcap
cap_mkdb termcap
1993-03-21 12:45:37 +03:00
beforeinstall:
@install -d -o root -g wheel -m 755 ${DESTDIR}${BINDIR}/misc
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>