diff options
Diffstat (limited to 'gnu/libexec/uucp/uuto')
| -rw-r--r-- | gnu/libexec/uucp/uuto/Makefile | 17 | ||||
| -rw-r--r-- | gnu/libexec/uucp/uuto/uuto.in | 16 |
2 files changed, 33 insertions, 0 deletions
diff --git a/gnu/libexec/uucp/uuto/Makefile b/gnu/libexec/uucp/uuto/Makefile new file mode 100644 index 000000000000..acf15390eb1e --- /dev/null +++ b/gnu/libexec/uucp/uuto/Makefile @@ -0,0 +1,17 @@ +# Makefile for uuto +# $Id: Makefile,v 1.2 1993/08/06 23:28:02 rgrimes Exp $ + +BINDIR= $(bindir) + +PROG= uuto +SRCS= +NOMAN= +STRIP= + +uuto: uuto.in + sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \ + $(.CURDIR)/uuto.in > $(.TARGET) + +depend: + +.include <bsd.prog.mk> diff --git a/gnu/libexec/uucp/uuto/uuto.in b/gnu/libexec/uucp/uuto/uuto.in new file mode 100644 index 000000000000..2d7d96a95870 --- /dev/null +++ b/gnu/libexec/uucp/uuto/uuto.in @@ -0,0 +1,16 @@ +: +# uuto +# Send files to a user on another system. +# +# Copyright (C) 1992 Ian Lance Taylor +# +# Please feel free do whatever you like with this exciting shell +# script. +# +# This is pretty trivial, since all the functionality was moved into +# uucp itself. The -t means to interpret the final argument as +# system!user, the -R means to copy directories recursively, and the +# -c means to not copy the files to the spool directory (may be +# overriden by -C or -p). +# +@BINDIR@/uucp -t -R -c $* |
