Initial import, 0.1 + pk 0.2.4-B1
[unix-history] / share / termcap / Makefile
CommitLineData
15637ed4
RG
1# @(#)Makefile 5.12 (Berkeley) 7/1/90
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#
7MAN5= termcap.0
8
9all: termcap ${MAN5}
10
11termcap: reorder termcap.src
12 ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder > /dev/null
13
14clean:
15 rm -f termcap
16
17cleandir: clean
18 rm -f ${MAN5}
19
20beforeinstall:
21 install -o ${BINOWN} -g ${BINGRP} -m 444 termcap \
22 ${DESTDIR}${BINDIR}/misc
23 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \
24 ${DESTDIR}${BINDIR}/misc
25
26.include <bsd.prog.mk>