14 lines
317 B
Makefile
14 lines
317 B
Makefile
# from: @(#)Makefile 5.5 (Berkeley) 5/11/90
|
|
# $Id: Makefile,v 1.2 1993/07/30 23:50:17 mycroft Exp $
|
|
|
|
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>
|