mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Merge vendor sendmail 8.18.1 into HEAD (cherry picked from commitd39bd2c138) Add new source file for sendmail 8.18.1 (cherry picked from commit19d4fb85bf) New sendmail 8.18.1 cf file (cherry picked from commit1b6a5580c1) Minor change to update these files so new freebsd*.cf files are generated (cherry picked from commit2c191ba6b0) Belatedly update version and date for sendmail 8.18.1 upgrade (cherry picked from commit31fbc98c94) Add a note about sendmail 8.18.1's stricter SMTP protocol enforcement (akin to commit21c1f1deb6in main) Update import date for stable/14 Relnotes: Yes Security: CVE-2023-51765
41 lines
888 B
Makefile
41 lines
888 B
Makefile
# $Id: Makefile,v 8.16 2006-01-05 22:03:31 ca Exp $
|
|
|
|
DIR= smm/08.sendmailop
|
|
SRCS= op.me
|
|
OBJS= op.ps
|
|
MACROS= -me
|
|
ROFF_CMD= groff
|
|
PIC_CMD= pic
|
|
EQN_CMD= eqn
|
|
UL_CMD= ul
|
|
PS2PDF_CMD= ps2pdf
|
|
PIC= ${PIC_CMD} -C
|
|
EQNASCII= ${EQN_CMD} -C -Tascii
|
|
EQNPS= ${EQN_CMD} -C -Tps
|
|
ROFFASCII= ${ROFF_CMD} -Tascii ${MACROS}
|
|
ROFFNOSGR= GROFF_NO_SGR=1 ${ROFFASCII}
|
|
ROFFPS= ${ROFF_CMD} -Tps -mps ${MACROS}
|
|
ULASCII= ${UL_CMD} -t dumb
|
|
PS2PDF= ${PS2PDF_CMD}
|
|
OPTXT_CMD= ${PIC} ${SRCS} | ${EQNASCII} | ${ROFFASCII} | ${ULASCII} 2>/dev/null
|
|
OPTXTNS_CMD= ${PIC} ${SRCS} | ${EQNASCII} | ${ROFFNOSGR} | ${ULASCII}
|
|
|
|
all: ${OBJS}
|
|
|
|
op.ps: ${SRCS}
|
|
rm -f $@
|
|
${PIC} ${SRCS} | ${EQNPS} | ${ROFFPS} > $@
|
|
test -s $@ || ${ROFFPS} -p -e ${SRCS} > $@
|
|
|
|
op.txt: ${SRCS}
|
|
rm -f $@
|
|
${OPTXT_CMD} > $@ || ${OPTXTNS_CMD} > $@
|
|
|
|
op.pdf: op.ps
|
|
rm -f $@
|
|
${PS2PDF} op.ps op.pdf
|
|
|
|
clean:
|
|
rm -f op.ps op.txt op.pdf
|
|
|
|
install: ${OBJS}
|