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

Annotation of src/usr.bin/tput/Makefile, Revision 1.13

1.13    ! nicm        1: #      $OpenBSD: Makefile,v 1.12 2016/03/30 06:38:46 jmc Exp $
1.1       deraadt     2:
                      3: PROG=  tput
1.13    ! nicm        4: SRCS=  clear_cmd.c reset_cmd.c tparm_type.c tput.c transform.c \
        !             5:        tty_settings.c
        !             6: CURSES=        ${.CURDIR}/../../lib/libcurses
1.11      millert     7: DPADD= ${LIBCURSES}
                      8: LDADD= -lcurses
1.13    ! nicm        9: LINKS= ${BINDIR}/tput ${BINDIR}/clear
        !            10: TIC= ${.CURDIR}/../tic
        !            11: CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I.
        !            12: .PATH:  ${TIC}
        !            13: CLEANFILES+= termsort.h
        !            14:
        !            15: termsort.h: ${TIC}/MKtermsort.sh
        !            16:        sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
1.1       deraadt    17:
                     18: .include <bsd.prog.mk>