mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-19 01:11:05 +01:00
13 lines
254 B
Makefile
13 lines
254 B
Makefile
|
# @(#)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>
|