xref: /original-bsd/share/termcap/Makefile (revision 2301fdfb)
1#
2# Copyright (c) 1987 Regents of the University of California.
3# All rights reserved.  The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6#	@(#)Makefile	5.5	(Berkeley)	01/21/88
7#
8# reorder gives an editor command for most common terminals
9# (in reverse order from n'th to 1'st most commonly used)
10# to move them to the front of termcap
11#
12all: termcap
13
14termcap: reorder termcap.src
15	ex - termcap.src < reorder
16
17clean: FRC
18	rm -f termcap
19
20install: FRC
21	install -c -o bin -g bin -m 444 map3270 ${DESTDIR}/etc/map3270
22	install -o bin -g staff -m 444 termcap ${DESTDIR}/etc/termcap
23	rm -rf ${DESTDIR}/usr/lib/tabset
24	mkdir ${DESTDIR}/usr/lib/tabset
25	chown bin.bin ${DESTDIR}/usr/lib/tabset
26	chmod 755 ${DESTDIR}/usr/lib/tabset
27	install -c -o bin -g bin -m 444 tabset/* ${DESTDIR}/usr/lib/tabset
28
29depend:
30lint:
31tags:
32FRC:
33