diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2022-08-02 11:28:49 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2022-08-02 11:28:49 +0000 |
commit | ed4855c380c2b739b927e6c1fc20375e60583d25 (patch) | |
tree | a02c982598d26801b2fd2ac528828f74c49551d7 /regress | |
parent | 0037d23d4dbb9dbf9bcaceb56a6c89668e958799 (diff) | |
download | mandoc-ed4855c380c2b739b927e6c1fc20375e60583d25.tar.gz |
Delete OpenBSD-only rules from the regress/roff/de Makefile
after they were changed in OpenBSD.
Tracking these rules here would be useless.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/roff/de/Makefile | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/regress/roff/de/Makefile b/regress/roff/de/Makefile index b730ce68..62f05200 100644 --- a/regress/roff/de/Makefile +++ b/regress/roff/de/Makefile @@ -10,41 +10,3 @@ LINT_TARGETS = escname indir infinite SKIP_GROFF = infinite .include <bsd.regress.mk> - - -# OpenBSD only: non-standard targets - -# --- additions to public targets --- - -all ascii: ascii-diff-opt - -ascii-clean: ascii-clean-opt - -groff: TH.out_ascii_opt Dd.out_ascii_opt - -groff-clean: groff-clean-opt - - -# --- local rules --- - -ascii-diff-opt: TH.mandoc_ascii_opt Dd.mandoc_ascii_opt - ${DIFF} ${.CURDIR}/TH.out_ascii_opt TH.mandoc_ascii_opt - ${DIFF} ${.CURDIR}/Dd.out_ascii_opt Dd.mandoc_ascii_opt - -TH.mandoc_ascii_opt: TH.in - ${MANDOC} -Ios=OpenBSD -Tascii -man ${.ALLSRC} > ${.TARGET} - -Dd.mandoc_ascii_opt: Dd.in - ${MANDOC} -Ios=OpenBSD -Tascii -mdoc ${.ALLSRC} > ${.TARGET} - -ascii-clean-opt: - rm -f TH.mandoc_ascii_opt Dd.mandoc_ascii_opt - -TH.out_ascii_opt: TH.in - /usr/local/bin/nroff -c -man -Tascii ${.ALLSRC} > ${.TARGET} - -Dd.out_ascii_opt: Dd.in - /usr/local/bin/nroff -c -mdoc -Tascii ${.ALLSRC} > ${.TARGET} - -groff-clean-opt: - rm -f TH.out_ascii_opt Dd.out_ascii_opt |