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

Diff for /src/Makefile between version 1.126 and 1.128

version 1.126, 2016/10/04 16:54:31 version 1.128, 2016/10/06 16:22:43
Line 50 
Line 50 
         @cd ${.CURDIR}/regress && ${MAKE} depend && exec ${MAKE} regress          @cd ${.CURDIR}/regress && ${MAKE} depend && exec ${MAKE} regress
   
 includes:  includes:
         cd ${.CURDIR}/include && ${MAKE} prereq && exec ${MAKE} includes          cd ${.CURDIR}/include && \
                   su ${BUILDUSER} -c 'exec ${MAKE} prereq' && \
                   exec ${MAKE} includes
   
 beforeinstall:  beforeinstall:
         cd ${.CURDIR}/etc && exec ${MAKE} DESTDIR=${DESTDIR} distrib-dirs          cd ${.CURDIR}/etc && exec ${MAKE} DESTDIR=${DESTDIR} distrib-dirs
Line 72 
Line 74 
 .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          exec ${MAKE} includes
         ${MAKE} cleandir          exec ${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.128