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

Annotation of src/share/terminfo/Makefile, Revision 1.2

1.2     ! millert     1: #      $OpenBSD: Makefile,v 1.1 1996/07/22 04:46:01 tholo Exp $
1.1       tholo       2:
                      3: #MAN=  terminfo.5
                      4:
                      5: CLEANFILES= fixed terminfo.db
                      6: all: terminfo.db
                      7:
                      8: terminfo.db: terminfo.src
                      9:        cat ${.ALLSRC} | sed \
                     10:            -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' \
                     11:            -e 's,/usr/lib/tabset,/usr/share/tabset,g' \
                     12:            > ${.OBJDIR}/fixed
                     13:        info_mkdb -f terminfo ${.OBJDIR}/fixed
                     14:
                     15: realinstall:
1.2     ! millert    16:        ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 terminfo.db \
1.1       tholo      17:             ${DESTDIR}${BINDIR}/misc/terminfo.db
                     18:
                     19: .include <bsd.prog.mk>