[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.70 and 1.71

version 1.70, 1998/10/15 02:50:00 version 1.71, 1998/10/16 05:05:09
Line 54  build: beforeinstall
Line 54  build: beforeinstall
 .if !defined(UPDATE)  .if !defined(UPDATE)
         ${MAKE} cleandir          ${MAKE} cleandir
 .endif  .endif
   .if defined(USE_EGCS) && empty(HAVE_GCC28)
   .if defined(DESTDIR)
           @echo "*** CAPUTE!"
           @echo "    You attempted to compile the world with egcs.  You must"
           @echo "    first install a native egcs compiler."
           false
   .else
           (cd ${.CURDIR}/gnu/usr.bin/egcs && \
               ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install && \
               ${MAKE} cleandir)
   .endif
   .endif
         ${MAKE} includes          ${MAKE} includes
         (cd ${.CURDIR}/lib/csu && \          (cd ${.CURDIR}/lib/csu && \
             ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)              ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)
Line 61  build: beforeinstall
Line 73  build: beforeinstall
             ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)              ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)
         (cd ${.CURDIR}/gnu/lib && \          (cd ${.CURDIR}/gnu/lib && \
             ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)              ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)
 .if defined(USE_EGCS) && !empty(HAVE_GCC28)  .if !defined(USE_EGCS)
         (cd ${.CURDIR}/gnu/lib/libgcc && \  
             ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)  
 .else  
 .if     (${MACHINE_ARCH} != "alpha") && \  .if     (${MACHINE_ARCH} != "alpha") && \
         (${MACHINE_ARCH} != "powerpc")          (${MACHINE_ARCH} != "powerpc")
         (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && \          (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && \
Line 93  build: beforeinstall
Line 102  build: beforeinstall
         ldconfig -m /usr/lib          ldconfig -m /usr/lib
 .endif  .endif
         ${MAKE} depend && ${MAKE} && ${MAKE} install          ${MAKE} depend && ${MAKE} && ${MAKE} install
 .if defined(USE_EGCS)  
 .if defined(DESTDIR) && (${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.'  
 .else  
         (cd ${.CURDIR}/gnu/lib/libgcc &&\  
             ${MAKE} depend && ${MAKE} && ${MAKE} install)  
 .endif # DESTDIR && !HAVE_GCC28  
 .endif # USE_EGCS  
         @echo -n "Build finished at: "          @echo -n "Build finished at: "
         @date          @date
   

Legend:
Removed from v.1.70  
changed lines
  Added in v.1.71

CVSweb <webmaster@jp.NetBSD.org>