[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.78 and 1.79

version 1.78, 1999/01/05 07:09:58 version 1.79, 1999/01/24 07:42:34
Line 30  SUBDIR+= gnu
Line 30  SUBDIR+= gnu
 # This is needed for libstdc++ and gen-params.  # This is needed for libstdc++ and gen-params.
 includes-gnu: includes-include includes-sys  includes-gnu: includes-include includes-sys
   
 .if exists(domestic) && (make(clean) || make(cleandir) || make(obj))  # This little mess makes the includes and install targets
   # do the expected thing.
   .if exists(domestic) && \
       (make(clean) || make(cleandir) || make(obj) || \
       (!defined(EXPORTABLE_SYSTEM) && (make(includes) || make(install))))
 SUBDIR+= domestic  SUBDIR+= domestic
 .endif  .endif
   
Line 80  build: beforeinstall
Line 84  build: beforeinstall
             ${MAKE} NOMAN= install && ${MAKE} cleandir)              ${MAKE} NOMAN= install && ${MAKE} cleandir)
 .endif  .endif
 .endif  .endif
         ${MAKE} includes          ${MAKE} EXPORTABLE_SYSTEM= includes
         (cd ${.CURDIR}/lib/csu && \          (cd ${.CURDIR}/lib/csu && \
             ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)              ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)
         (cd ${.CURDIR}/lib && \          (cd ${.CURDIR}/lib && \
             ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)              ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)
         (cd ${.CURDIR}/gnu/lib && \          (cd ${.CURDIR}/gnu/lib && \
             ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)              ${MAKE} depend && ${MAKE} ${_J} NOMAN= && ${MAKE} NOMAN= install)
         ${MAKE} depend && ${MAKE} ${_J} && ${MAKE} install          ${MAKE} depend && ${MAKE} ${_J} && ${MAKE} EXPORTABLE_SYSTEM= install
 .if exists(domestic) && !defined(EXPORTABLE_SYSTEM)  .if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
         (cd ${.CURDIR}/domestic && ${MAKE} ${_J} _SLAVE_BUILD= build)          (cd ${.CURDIR}/domestic && ${MAKE} ${_J} _SLAVE_BUILD= build)
 .endif  .endif

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.79

CVSweb <webmaster@jp.NetBSD.org>