[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src

Diff for /src/Makefile between version 1.48 and 1.51

version 1.48, 1999/02/02 08:53:32 version 1.51, 1999/11/26 00:32:11
Line 57 
Line 57 
 .endif  .endif
   
 includes:  includes:
         (cd ${.CURDIR}/include; ${MAKE} includes)          (cd ${.CURDIR}/include; ${MAKE} prereq; ${MAKE} includes)
   
 beforeinstall:  beforeinstall:
 .ifndef DESTDIR  .ifndef DESTDIR
Line 77 
Line 77 
         rm -f ${GLOBAL_AUTOCONF_CACHE}          rm -f ${GLOBAL_AUTOCONF_CACHE}
 .endif  .endif
         (cd ${.CURDIR}/share/mk && ${SUDO} ${MAKE} install)          (cd ${.CURDIR}/share/mk && ${SUDO} ${MAKE} install)
         (cd ${.CURDIR}/include; ${SUDO} ${MAKE} includes)          (cd ${.CURDIR}/include; ${MAKE} prereq; ${SUDO} ${MAKE} includes)
         ${SUDO} ${MAKE} cleandir          ${SUDO} ${MAKE} cleandir
         (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && \          (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && \
             ${SUDO} ${MAKE} install)              ${SUDO} ${MAKE} install)
         (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \          (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \
             ${SUDO} ${MAKE} install)              ${SUDO} ${MAKE} install)
           (cd ${.CURDIR}/gnu/usr.bin/perl && \
               ${MAKE} -f Makefile.bsd-wrapper config.sh && \
               ${MAKE} -f Makefile.bsd-wrapper depend && \
               ${MAKE} -f Makefile.bsd-wrapper perl.lib && \
               ${SUDO} ${MAKE} -f Makefile.bsd-wrapper install.lib)
 .if (${MACHINE_ARCH} == "mips")  .if (${MACHINE_ARCH} == "mips")
         ldconfig          ldconfig
 .endif  .endif

Legend:
Removed from v.1.48  
changed lines
  Added in v.1.51