HardenedBSD/usr.bin/bintrans/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.

MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
2024-07-15 16:43:39 -06:00

22 lines
574 B
Makefile

.include <src.opts.mk>
PROG= bintrans
SRCS= bintrans.c uuencode.c uudecode.c qp.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>