[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.7 and 1.19

version 1.7, 1993/04/29 11:48:50 version 1.19, 1994/06/14 04:40:29
Line 1 
Line 1 
 #       $Header$  #       $Id$
   
 # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW  # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
   
 SUBDIR+= bin include lib libexec sbin usr.bin usr.sbin share games  SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share games
 SUBDIR+= gnulib gnulibexec usr.gnubin gnugames  SUBDIR+= gnu
   
   SUBDIR+= sys
   
   .if exists(regress)
   .ifmake !(install)
   SUBDIR+= regress
   .endif
   
   regression-tests:
           @echo Running regression tests...
           @(cd regress && ${MAKE} regress)
   .endif
   
   afterinstall:
   .ifndef NOMAN
           (cd share/man && ${MAKE} makedb)
   .endif
   
   build:
           (cd include && ${MAKE} install)
           ${MAKE} cleandir
           (cd lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
           (cd gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install)
   .if exists(kerberosIV)
           (cd kerberosIV && ${MAKE} depend && ${MAKE} && ${MAKE} install)
   .endif
           ${MAKE} depend && ${MAKE} && ${MAKE} install
   
 .include <bsd.subdir.mk>  .include <bsd.subdir.mk>

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

CVSweb <webmaster@jp.NetBSD.org>