[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.56 and 1.59

version 1.56, 1998/05/27 06:38:37 version 1.59, 1998/07/24 16:51:33
Line 2 
Line 2 
   
 .include <bsd.own.mk>                   # for configuration variables.  .include <bsd.own.mk>                   # for configuration variables.
   
   HAVE_GCC28!=    ${CXX} --version | egrep "^(2\.8|egcs)" ; echo
   
 # 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 sys  SUBDIR+= lib include bin libexec sbin usr.bin usr.sbin share sys
Line 54  build: beforeinstall
Line 56  build: beforeinstall
         (cd ${.CURDIR}/lib/csu && ${MAKE} depend && ${MAKE} && ${MAKE} install)          (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)
         (cd ${.CURDIR}/usr.bin/lex &&\          (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && ${MAKE} depend && ${MAKE} && ${MAKE} install)
             ${MAKE} depend && ${MAKE} && ${MAKE} install)  
         (cd ${.CURDIR}/usr.bin/yacc && \  
             ${MAKE} depend && ${MAKE} && ${MAKE} install)  
         (cd ${.CURDIR}/usr.bin/xlint && \  
             ${MAKE} depend && ${MAKE} && ${MAKE} install)  
 .if exists(domestic) && !defined(EXPORTABLE_SYSTEM)  .if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
 # libtelnet depends on libdes and libkrb.  libkrb depends on  # libtelnet depends on libdes and libkrb.  libkrb depends on
 # libcom_err.  # libcom_err.
Line 79  build: beforeinstall
Line 76  build: beforeinstall
             ${MAKE} install)              ${MAKE} install)
 .endif  .endif
         ${MAKE} depend && ${MAKE} && ${MAKE} install          ${MAKE} depend && ${MAKE} && ${MAKE} install
 .if     (${MACHINE_ARCH} == "arm32") || \  
         (${MACHINE_ARCH} == "i386") || \  
         (${MACHINE_ARCH} == "mips") || \  
         (${MACHINE_ARCH} == "m68k") || \  
         (${MACHINE_ARCH} == "ns32k") || \  
         (${MACHINE_ARCH} == "sparc") || \  
         (${MACHINE_ARCH} == "vax")  
 .if defined(USE_EGCS)  .if defined(USE_EGCS)
         (cd ${.CURDIR}/gnu/usr.bin/egcs/libgcc &&\  .if defined(DESTDIR) && (${HAVE_GCC28} == "")
             ${MAKE} depend && ${MAKE} && ${MAKE} install)          @echo '***** WARNING ***** Your system compiler is not GCC 2.8 or higher,'
           @echo 'and you have built a distribution with GCC 2.8 and DESTDIR set.'
           @echo 'You will need to rebuild libgcc from gnu/usr.bin/egcs/libgcc'
           @echo 'in order to have full C++ support in the binary set.'
 .else  .else
         (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc &&\          (cd ${.CURDIR}/gnu/usr.bin/egcs/libgcc &&\
             ${MAKE} depend && ${MAKE} && ${MAKE} install)              ${MAKE} depend && ${MAKE} && ${MAKE} install)
   .endif # DESTDIR && !HAVE_GCC28
 .endif # USE_EGCS  .endif # USE_EGCS
 .endif # MACHINE_ARCH  
         @echo -n "Build finished at: "          @echo -n "Build finished at: "
         @date          @date
   

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.59

CVSweb <webmaster@jp.NetBSD.org>