[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/Makefile between version 1.143 and 1.144

version 1.143, 2001/10/24 03:21:20 version 1.144, 2001/10/29 19:48:35
Line 172  dependall-distrib depend-distrib all-dis
Line 172  dependall-distrib depend-distrib all-dis
 .include "${.CURDIR}/share/mk/bsd.subdir.mk"  .include "${.CURDIR}/share/mk/bsd.subdir.mk"
   
 _M:=    -m ${.CURDIR}/share/mk  _M:=    -m ${.CURDIR}/share/mk
   
   # Rules for building the BUILDING.* documentation files.
   
   build-docs: ${.CURDIR}/BUILDING.txt ${.CURDIR}/BUILDING.html
   
   .SUFFIXES: .mdoc .html .txt
   
   .mdoc.html: ${.CURDIR}/Makefile
           groff -mdoc2html -Tlatin1 -P-b -P-u -P-o -ww -mtty-char $< >$@
   
   # The awk expression changes line endings from LF to CR-LF to make
   # this readable on many more platforms than just Un*x.
   .mdoc.txt: ${.CURDIR}/Makefile
           groff -mdoc -Tascii -P-b -P-u -P-o $< | \
                   awk 'BEGIN{ORS="\r\n"}{print}' >$@

Legend:
Removed from v.1.143  
changed lines
  Added in v.1.144

CVSweb <webmaster@jp.NetBSD.org>