d7d37d2613
by a repository copy from 1.1.5 and patched back to Lite1) and rbootd/bootdir/SYSHPBSD (which is binary). All changed files have already left the vendor branch.
15 lines
279 B
Makefile
15 lines
279 B
Makefile
# @(#)Makefile.dist 8.1 (Berkeley) 10/17/94
|
|
|
|
BINDIR= ${DESTDIR}/usr/lib
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
mail.local: mail.local.c
|
|
${CC} -O -o mail.local mail.local.c
|
|
|
|
install: mail.local
|
|
install -s -o ${BINOWN} -m ${BINMODE} mail.local ${BINDIR}
|
|
|
|
clean:
|
|
rm -f mail.local core a.out
|