[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.178 and 1.179

version 1.178, 2002/06/20 08:21:59 version 1.179, 2002/06/26 00:10:16
Line 94  regression-tests:
Line 94  regression-tests:
         @(cd ${.CURDIR}/regress && ${MAKE} regress)          @(cd ${.CURDIR}/regress && ${MAKE} regress)
 .endif  .endif
   
   .if defined(UNPRIVED)
   NOPOSTINSTALL=  # defined
   .endif
   
 afterinstall:  afterinstall:
 .if ${MKMAN} != "no"  .if ${MKMAN} != "no"
         (cd ${.CURDIR}/share/man && ${MAKE} makedb)          (cd ${.CURDIR}/share/man && ${MAKE} makedb)
Line 101  afterinstall:
Line 105  afterinstall:
 .if defined(UNPRIVED) && (${MKINFO} != "no")  .if defined(UNPRIVED) && (${MKINFO} != "no")
         (cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)          (cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
 .endif  .endif
 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"  .if !defined(NOPOSTINSTALL)
         (cd ${.CURDIR} && ${MAKE} postinstall-check)          (${MAKE} postinstall-check)
 .endif  .endif
   
 postinstall-check:  postinstall-check:
Line 158  build:
Line 162  build:
 # Build a full distribution, but not a release (i.e. no sets into  # Build a full distribution, but not a release (i.e. no sets into
 # ${RELEASEDIR}).  # ${RELEASEDIR}).
   
 distribution: build  distribution:
           (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
         (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)          (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)
   
 # Build a release or snapshot (implies "make build").  # Build a release or snapshot (implies "make build").
   
 release snapshot: build  release snapshot:
           (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
         (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)          (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
   
 # Special components of the "make build" process.  # Special components of the "make build" process.

Legend:
Removed from v.1.178  
changed lines
  Added in v.1.179

CVSweb <webmaster@jp.NetBSD.org>