[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc / regress / roff / de

Annotation of mandoc/regress/roff/de/Makefile, Revision 1.3

1.1       schwarze    1: # $OpenBSD: Makefile,v 1.9 2015/02/03 19:37:25 schwarze Exp $
                      2:
1.2       schwarze    3: REGRESS_TARGETS         = append cond escname factorial indir infinite startde TH Dd
                      4: LINT_TARGETS    = escname indir infinite
                      5:
                      6: # groff-1.22.3 defect:
                      7: # infinite recursion aborts output completely
                      8:
                      9: SKIP_GROFF      = infinite
1.1       schwarze   10:
                     11: .include <bsd.regress.mk>
                     12:
                     13:
                     14: # OpenBSD only: non-standard targets
                     15:
                     16: # --- additions to public targets ---
                     17:
                     18: all ascii: ascii-diff-opt
                     19:
                     20: ascii-clean: ascii-clean-opt
                     21:
                     22: groff: TH.out_ascii_opt Dd.out_ascii_opt
                     23:
                     24: groff-clean: groff-clean-opt
                     25:
                     26:
                     27: # --- local rules ---
                     28:
                     29: ascii-diff-opt: TH.mandoc_ascii_opt Dd.mandoc_ascii_opt
                     30:        @${DIFF} ${.CURDIR}/TH.out_ascii_opt TH.mandoc_ascii_opt
                     31:        @${DIFF} ${.CURDIR}/Dd.out_ascii_opt Dd.mandoc_ascii_opt
                     32:
                     33: TH.mandoc_ascii_opt: TH.in
1.3     ! schwarze   34:        @${MANDOC} -Ios=OpenBSD -Tascii -man ${.ALLSRC} > ${.TARGET}
1.1       schwarze   35:
                     36: Dd.mandoc_ascii_opt: Dd.in
1.3     ! schwarze   37:        @${MANDOC} -Ios=OpenBSD -Tascii -mdoc ${.ALLSRC} > ${.TARGET}
1.1       schwarze   38:
                     39: ascii-clean-opt:
                     40:        @rm -f TH.mandoc_ascii_opt Dd.mandoc_ascii_opt
                     41:
                     42: TH.out_ascii_opt: TH.in
                     43:        /usr/local/bin/nroff -c -man -Tascii ${.ALLSRC} > ${.TARGET}
                     44:
                     45: Dd.out_ascii_opt: Dd.in
                     46:        /usr/local/bin/nroff -c -mdoc -Tascii ${.ALLSRC} > ${.TARGET}
                     47:
                     48: groff-clean-opt:
                     49:        rm -f TH.out_ascii_opt Dd.out_ascii_opt

CVSweb