[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.92 and 1.93

version 1.92, 1999/02/20 09:10:41 version 1.93, 1999/03/10 19:10:14
Line 32  includes-gnu: includes-include includes-
Line 32  includes-gnu: includes-include includes-
   
 # Descend into the domestic tree if it exists AND  # Descend into the domestic tree if it exists AND
 #  1) the target is clean, cleandir, or obj, OR  #  1) the target is clean, cleandir, or obj, OR
 #  2) the the target is install or includes AND NOT  #  2) the the target is install or includes AND
 #    a) compiling only "exportable" code OR  #    NOT compiling only "exportable" code AND
 #    b) doing it as part of build.  #    doing it as part of installing a distribution.
   
 .if exists(domestic) && \  .if exists(domestic) && \
     (make(clean) || make(cleandir) || make(obj) || \      (make(clean) || make(cleandir) || make(obj) || \
     ((make(includes) || make(install)) && \      ((make(includes) || make(install)) && \
     !(defined(EXPORTABLE_SYSTEM) || defined(_BUILD))))      !defined(EXPORTABLE_SYSTEM) && defined(_DISTRIB)))
 SUBDIR+= domestic  SUBDIR+= domestic
 .endif  .endif
   
Line 95  build: beforeinstall
Line 95  build: beforeinstall
             ${MAKE} MKMAN=no install && ${MAKE} cleandir)              ${MAKE} MKMAN=no install && ${MAKE} cleandir)
 .endif  .endif
 .endif  .endif
         ${MAKE} _BUILD= includes          ${MAKE} includes
         (cd ${.CURDIR}/lib/csu && \          (cd ${.CURDIR}/lib/csu && \
             ${MAKE} depend && ${MAKE} ${_J} MKMAN=no && \              ${MAKE} depend && ${MAKE} ${_J} MKMAN=no && \
             ${MAKE} MKMAN=no install)              ${MAKE} MKMAN=no install)

Legend:
Removed from v.1.92  
changed lines
  Added in v.1.93

CVSweb <webmaster@jp.NetBSD.org>