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

Diff for /src/usr.bin/tput/Makefile between version 1.12 and 1.13

version 1.12, 2016/03/30 06:38:46 version 1.13, 2023/10/17 09:52:11
Line 1 
Line 1 
 #       $OpenBSD$  #       $OpenBSD$
   
 PROG=   tput  PROG=   tput
   SRCS=   clear_cmd.c reset_cmd.c tparm_type.c tput.c transform.c \
           tty_settings.c
   CURSES= ${.CURDIR}/../../lib/libcurses
 DPADD=  ${LIBCURSES}  DPADD=  ${LIBCURSES}
 LDADD=  -lcurses  LDADD=  -lcurses
 LINKS= ${BINDIR}/tput ${BINDIR}/clear  LINKS=  ${BINDIR}/tput ${BINDIR}/clear
   TIC= ${.CURDIR}/../tic
   CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I.
   .PATH:  ${TIC}
   CLEANFILES+= termsort.h
   
   termsort.h: ${TIC}/MKtermsort.sh
           sh ${TIC}/MKtermsort.sh awk ${CURSES}/Caps > ${.TARGET}
   
 .include <bsd.prog.mk>  .include <bsd.prog.mk>

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13