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

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

1.15    ! naddy       1: #      $OpenBSD: Makefile,v 1.14 2024/04/27 15:05:55 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
1.15    ! naddy      14: MAN=   tput.1 clear.1
1.13      nicm       15:
                     16: termsort.h: ${TIC}/MKtermsort.sh
                     17:        sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
1.1       deraadt    18:
                     19: .include <bsd.prog.mk>