[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / share / terminfo

File: [local] / src / share / terminfo / Attic / Makefile (download)

Revision 1.1, Mon Jul 22 04:46:01 1996 UTC (27 years, 10 months ago) by tholo
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0

Add build of terminfo.db; note that the terminfo source has been modified
to have stock X11R6 xterm as the default "xterm" entry, and not the fixed
XFree86 3.1.2E version

#	$OpenBSD: Makefile,v 1.1 1996/07/22 04:46:01 tholo Exp $

#MAN=	terminfo.5

CLEANFILES= fixed terminfo.db
all: terminfo.db

terminfo.db: terminfo.src
	cat ${.ALLSRC} | sed \
	    -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' \
	    -e 's,/usr/lib/tabset,/usr/share/tabset,g' \
	    > ${.OBJDIR}/fixed
	info_mkdb -f terminfo ${.OBJDIR}/fixed

realinstall:
	install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 terminfo.db \
	     ${DESTDIR}${BINDIR}/misc/terminfo.db

.include <bsd.prog.mk>