[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.25 and 1.42

version 1.25, 1995/10/09 02:11:28 version 1.42, 1997/05/31 21:21:13
Line 1 
Line 1 
 #       $NetBSD$  #       $NetBSD$
   
   .include <bsd.own.mk>                   # for configuration variables.
   
 # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW  # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
   
 SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games  SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share
   
   .if exists(games)
   SUBDIR+= games
   .endif
   
 SUBDIR+= gnu  SUBDIR+= gnu
   
 SUBDIR+= sys  SUBDIR+= sys
Line 21  regression-tests:
Line 28  regression-tests:
         @(cd ${.CURDIR}/regress && ${MAKE} regress)          @(cd ${.CURDIR}/regress && ${MAKE} regress)
 .endif  .endif
   
 .include <bsd.own.mk>   # for NOMAN, if it's there.  beforeinstall:
   .ifndef DESTDIR
 #beforeinstall:          (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
 #       (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)  .else
           (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
   .endif
   
 afterinstall:  afterinstall:
 .ifndef NOMAN  .ifndef NOMAN
Line 32  afterinstall:
Line 41  afterinstall:
 .endif  .endif
   
 build:  build:
         (cd ${.CURDIR}/include && ${MAKE} install)          (cd ${.CURDIR}/share/mk && ${MAKE} install)
           ${MAKE} includes
   .if !defined(UPDATE)
         ${MAKE} cleandir          ${MAKE} cleandir
   .endif
           (cd ${.CURDIR}/lib/csu && ${MAKE} depend && ${MAKE} && ${MAKE} install)
         (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)          (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
         (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)          (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
 .if exists(domestic)  .if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
         (cd ${.CURDIR}/domestic/libcrypt && ${MAKE} depend && ${MAKE} && ${MAKE} install)          (cd ${.CURDIR}/domestic/lib/ && ${MAKE} depend && ${MAKE} && \
 .endif              ${MAKE} install)
 .if exists(kerberosIV)  
         (cd ${.CURDIR}/kerberosIV && ${MAKE} depend && ${MAKE} && ${MAKE} install)  
 .endif  .endif
         ${MAKE} depend && ${MAKE} && ${MAKE} install          ${MAKE} depend && ${MAKE} && ${MAKE} install
   

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.42

CVSweb <webmaster@jp.NetBSD.org>