19 lines
367 B
Makefile
19 lines
367 B
Makefile
# Makefile for uuto
|
|
# $Id: Makefile,v 1.4 1994/12/22 13:13:44 cgd Exp $
|
|
|
|
BINDIR= $(bindir)
|
|
|
|
CLEANFILES= uuto
|
|
|
|
all: ${CLEANFILES}
|
|
|
|
uuto: uuto.in
|
|
sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \
|
|
$(.CURDIR)/uuto.in > $(.TARGET)
|
|
|
|
install:
|
|
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
uuto ${DESTDIR}${BINDIR}
|
|
|
|
.include <bsd.prog.mk>
|