freebsd-dev/usr.bin/bintrans/Makefile
Piotr Pawel Stefaniak aad4fd5495 Add a quoted-printable encoder/decoder
As an example:
printf 'We don=27t know what to do with other=20worlds.=0D=0A' \
| bintrans qp -u

Differential Revision:	https://reviews.freebsd.org/D34933

Reviewed by:	debdrup (manpage)
2022-04-24 08:20:27 +02:00

25 lines
638 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
.include <src.opts.mk>
PROG= bintrans
SRCS= bintrans.c uuencode.c uudecode.c quoted-printable.c
MAN= bintrans.1 uuencode.format.5
LINKS+= ${BINDIR}/bintrans ${BINDIR}/uuencode
LINKS+= ${BINDIR}/bintrans ${BINDIR}/b64encode
LINKS+= ${BINDIR}/bintrans ${BINDIR}/uudecode
LINKS+= ${BINDIR}/bintrans ${BINDIR}/b64decode
LINKS+= ${BINDIR}/bintrans ${BINDIR}/base64
MLINKS= bintrans.1 uudecode.1 \
bintrans.1 uuencode.1 \
uuencode.format.5 uuencode.5 \
bintrans.1 b64encode.1 \
b64encode.1 b64decode.1 \
b64encode.1 base64.1
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
.include <bsd.prog.mk>