From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 23911 invoked from network); 2 Aug 2022 11:29:25 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTPUTF8; 2 Aug 2022 11:29:25 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id ef0831cc for ; Tue, 2 Aug 2022 06:29:19 -0500 (EST) Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id 85f9340f for ; Tue, 2 Aug 2022 06:29:19 -0500 (EST) Date: Tue, 2 Aug 2022 06:29:19 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: Delete OpenBSD-only rules from the regress/roff/de Makefile X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: <3368eb995422ade1@mandoc.bsd.lv> Log Message: ----------- Delete OpenBSD-only rules from the regress/roff/de Makefile after they were changed in OpenBSD. Tracking these rules here would be useless. Modified Files: -------------- mandoc/regress/roff/de: Makefile Revision Data ------------- Index: Makefile =================================================================== RCS file: /home/cvs/mandoc/mandoc/regress/roff/de/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -Lregress/roff/de/Makefile -Lregress/roff/de/Makefile -u -p -r1.6 -r1.7 --- regress/roff/de/Makefile +++ regress/roff/de/Makefile @@ -10,41 +10,3 @@ LINT_TARGETS = escname indir infinite SKIP_GROFF = infinite .include - - -# 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 -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv