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

Diff for /src/Makefile between version 1.126 and 1.127

version 1.126, 2016/10/04 16:54:31 version 1.127, 2016/10/05 18:00:41
Line 72 
Line 72 
 .ifdef GLOBAL_AUTOCONF_CACHE  .ifdef GLOBAL_AUTOCONF_CACHE
         cp /dev/null ${GLOBAL_AUTOCONF_CACHE}          cp /dev/null ${GLOBAL_AUTOCONF_CACHE}
 .endif  .endif
           @if [[ `id -u` -ne 0 ]]; then \
                   echo 'must be called by root' 2>&1; \
                   false; \
           fi
         cd ${.CURDIR}/share/mk && exec ${MAKE} install          cd ${.CURDIR}/share/mk && exec ${MAKE} install
         cd ${.CURDIR}/include && ${MAKE} prereq && exec ${MAKE} includes          cd ${.CURDIR}/include && \
               su ${BUILDUSER} -c 'exec ${MAKE} prereq' && \
               exec ${MAKE} includes
         ${MAKE} cleandir          ${MAKE} cleandir
         cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && \          cd ${.CURDIR}/lib && \
               su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \
             NOMAN=1 exec ${MAKE} install              NOMAN=1 exec ${MAKE} install
         cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \          cd ${.CURDIR}/gnu/lib && \
               su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \
             NOMAN=1 exec ${MAKE} install              NOMAN=1 exec ${MAKE} install
         ${MAKE} depend && ${MAKE} && exec ${MAKE} install          su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \
               exec ${MAKE} install
         /bin/sh ${.CURDIR}/distrib/sets/makeetcset ${.CURDIR} ${MAKE}          /bin/sh ${.CURDIR}/distrib/sets/makeetcset ${.CURDIR} ${MAKE}
 .endif  .endif
   

Legend:
Removed from v.1.126  
changed lines
  Added in v.1.127