[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.62 and 1.68

version 1.62, 1998/07/28 18:55:41 version 1.68, 1998/09/29 06:59:53
Line 42  beforeinstall:
Line 42  beforeinstall:
 .endif  .endif
   
 afterinstall:  afterinstall:
 .ifndef NOMAN  .if !defined(NOMAN) && !defined(NOSHARE)
         (cd ${.CURDIR}/share/man && ${MAKE} makedb)          (cd ${.CURDIR}/share/man && ${MAKE} makedb)
 .endif  .endif
   
 build: beforeinstall  build: beforeinstall
   .if !defined(NOSHARE)
         (cd ${.CURDIR}/share/mk && ${MAKE} install)          (cd ${.CURDIR}/share/mk && ${MAKE} install)
         (cd ${.CURDIR}/share/tmac && ${MAKE} && ${MAKE} install)          (cd ${.CURDIR}/share/tmac && ${MAKE} && ${MAKE} install)
   .endif
 .if !defined(UPDATE)  .if !defined(UPDATE)
         ${MAKE} cleandir          ${MAKE} cleandir
 .endif  .endif
Line 59  build: beforeinstall
Line 61  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)  .if defined(USE_EGCS) && !empty(HAVE_GCC28)
         (cd ${.CURDIR}/gnu/usr.bin/egcs/libgcc && \          (cd ${.CURDIR}/gnu/lib/libgcc && \
             ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)              ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)
 .else  .else
 .if     (${MACHINE_ARCH} != "alpha") && \  .if     (${MACHINE_ARCH} != "powerpc")
         (${MACHINE_ARCH} != "powerpc")  
         (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && \          (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && \
             ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)              ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)
 .endif  .endif
Line 88  build: beforeinstall
Line 89  build: beforeinstall
             ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)              ${MAKE} depend && NOMAN= ${MAKE} && NOMAN= ${MAKE} install)
 .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.62  
changed lines
  Added in v.1.68

CVSweb <webmaster@jp.NetBSD.org>