[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.57 and 1.58

version 1.57, 1998/07/21 23:13:13 version 1.58, 1998/07/24 16:48:47
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 74  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)
             ${MAKE} depend && ${MAKE} && ${MAKE} install)  .if (${HAVE_GCC28} == "")
           @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.'
   .endif # HAVE_GCC28
 .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
 .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.57  
changed lines
  Added in v.1.58

CVSweb <webmaster@jp.NetBSD.org>