[BACK]Return to bsd.man.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Diff for /src/share/mk/bsd.man.mk between version 1.19 and 1.20

version 1.19, 2000/11/10 00:24:31 version 1.20, 2000/11/10 02:55:40
Line 3 
Line 3 
 #       @(#)bsd.man.mk  5.2 (Berkeley) 5/11/90  #       @(#)bsd.man.mk  5.2 (Berkeley) 5/11/90
   
 MANTARGET?=     cat  MANTARGET?=     cat
 NROFF?=         nroff  NROFF?=         nroff -Tascii
 TBL?=           tbl  TBL?=           tbl
   
 .if !target(.MAIN)  .if !target(.MAIN)
Line 19 
Line 19 
         .ps1 .ps2 .ps3 .ps4 .ps5 .ps6 .ps7 .ps8 .ps9          .ps1 .ps2 .ps3 .ps4 .ps5 .ps6 .ps7 .ps8 .ps9
   
 .9.cat9 .8.cat8 .7.cat7 .6.cat6 .5.cat5 .4.cat4 .3p.cat3p .3.cat3 .2.cat2 .1.cat1:  .9.cat9 .8.cat8 .7.cat7 .6.cat6 .5.cat5 .4.cat4 .3p.cat3p .3.cat3 .2.cat2 .1.cat1:
         @echo "${NROFF} -Tascii -mandoc ${.IMPSRC} > ${.TARGET}"          @echo "${NROFF} -mandoc ${.IMPSRC} > ${.TARGET}"
         @${NROFF} -Tascii -mandoc ${.IMPSRC} > ${.TARGET} || (rm -f ${.TARGET}; false)          @${NROFF} -mandoc ${.IMPSRC} > ${.TARGET} || (rm -f ${.TARGET}; false)
   
 .9tbl.cat9 .8tbl.cat8 .7tbl.cat7 .6tbl.cat6 .5tbl.cat5 .4tbl.cat4 .3tbl.cat3 \  .9tbl.cat9 .8tbl.cat8 .7tbl.cat7 .6tbl.cat6 .5tbl.cat5 .4tbl.cat4 .3tbl.cat3 \
 .2tbl.cat2 .1tbl.cat1:  .2tbl.cat2 .1tbl.cat1:
         @echo "${TBL} ${.IMPSRC} | ${NROFF} -Tascii -mandoc > ${.TARGET}"          @echo "${TBL} ${.IMPSRC} | ${NROFF} -mandoc > ${.TARGET}"
         @${TBL} ${.IMPSRC} | ${NROFF}  -Tascii -mandoc > ${.TARGET} || \          @${TBL} ${.IMPSRC} | ${NROFF} -mandoc > ${.TARGET} || \
             (rm -f ${.TARGET}; false)              (rm -f ${.TARGET}; false)
   
 .9.ps9 .8.ps8 .7.ps7 .6.ps6 .5.ps5 .4.ps4 .3p.ps3p .3.ps3 .2.ps2 .1.ps1:  .9.ps9 .8.ps8 .7.ps7 .6.ps6 .5.ps5 .4.ps4 .3p.ps3p .3.ps3 .2.ps2 .1.ps1:

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20