diff options
Diffstat (limited to 'usr.bin/tput/Makefile')
-rw-r--r-- | usr.bin/tput/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usr.bin/tput/Makefile b/usr.bin/tput/Makefile new file mode 100644 index 0000000..abec983 --- /dev/null +++ b/usr.bin/tput/Makefile @@ -0,0 +1,12 @@ +# @(#)Makefile 8.1 (Berkeley) 6/6/93 + +PROG= tput +DPADD= ${LIBTERMCAP} +LDADD= -ltermcap +MLINKS= tput.1 clear.1 + +beforeinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/clear.sh ${DESTDIR}/usr/bin/clear + +.include <bsd.prog.mk> |