mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
17 lines
263 B
Makefile
17 lines
263 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
MAN1= shar.0
|
|
|
|
all shar: ${MAN1}
|
|
|
|
clean depend lint tags:
|
|
|
|
cleandir:
|
|
rm -f ${MAN1}
|
|
|
|
beforeinstall:
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/shar.sh ${DESTDIR}/usr/bin/shar
|
|
|
|
.include <bsd.prog.mk>
|