xref: /dragonfly/share/termcap/Makefile (revision b40e316c)
1#	@(#)Makefile	8.1 (Berkeley) 6/8/93
2# $FreeBSD: src/share/termcap/Makefile,v 1.12.2.5 2002/07/17 15:10:20 ru Exp $
3# $DragonFly: src/share/termcap/Makefile,v 1.2 2003/06/17 04:37:03 dillon Exp $
4
5# reorder gives an editor command for most common terminals
6# (in reverse order from n'th to 1'st most commonly used)
7# to move them to the front of termcap
8#
9MAN=	termcap.5
10
11FILES=		map3270 termcap termcap.db
12FILESDIR=	${BINDIR}/misc
13CLEANFILES+=	termcap termcap.db
14
15termcap: reorder termcap.src
16	TERM=dumb TERMCAP=dumb: ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder
17
18termcap.db: termcap
19	cap_mkdb termcap
20
21etc-termcap:
22	ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
23
24.include <bsd.prog.mk>
25