Add additional sanity checks, remove unused arguments to vm_page_startup().
[dragonfly.git] / share / termcap / Makefile
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 #
9 MAN=    termcap.5
10
11 FILES=          map3270 termcap termcap.db
12 FILESDIR=       ${BINDIR}/misc
13 CLEANFILES+=    termcap termcap.db
14
15 termcap: reorder termcap.src
16         TERM=dumb TERMCAP=dumb: ex - ${.CURDIR}/termcap.src < ${.CURDIR}/reorder
17
18 termcap.db: termcap
19         cap_mkdb termcap
20
21 etc-termcap:
22         ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
23
24 .include <bsd.prog.mk>