[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / more

Annotation of src/usr.bin/more/Makefile, Revision 1.1

1.1     ! deraadt     1: #      from: @(#)Makefile      5.6 (Berkeley) 3/12/91
        !             2: #      $Id: Makefile,v 1.6 1994/04/16 08:14:50 andrew Exp $
        !             3:
        !             4: PROG=  more
        !             5: CFLAGS+=-I${.CURDIR} -DREGEX -DTERMIOS
        !             6: SRCS=  ch.c command.c decode.c filename.c help.c input.c line.c \
        !             7:        linenum.c main.c option.c os.c output.c position.c prim.c \
        !             8:        screen.c signal.c tags.c ttyin.c
        !             9: LDADD+=        -ltermcap
        !            10: DPADD+=        ${LIBTERM}
        !            11: MLINKS=        more.1 page.1
        !            12: LINKS= ${BINDIR}/more ${BINDIR}/page
        !            13:
        !            14: beforeinstall:
        !            15:        install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
        !            16:            ${DESTDIR}/usr/share/misc
        !            17:
        !            18: .include <bsd.prog.mk>