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

Diff for /src/Makefile between version 1.131 and 1.134

version 1.131, 2016/11/19 14:20:58 version 1.134, 2017/07/05 10:22:32
Line 75 
Line 75 
   
 do-build:  do-build:
 .ifdef GLOBAL_AUTOCONF_CACHE  .ifdef GLOBAL_AUTOCONF_CACHE
         cp /dev/null ${GLOBAL_AUTOCONF_CACHE}          ${INSTALL} -c -o ${BUILDUSER} -g ${WOBJGROUP} -m 664 /dev/null \
               ${GLOBAL_AUTOCONF_CACHE}
 .endif  .endif
         @if [[ `id -u` -ne 0 ]]; then \          @if [[ `id -u` -ne 0 ]]; then \
                 echo $@ must be called by root >&2; \                  echo $@ must be called by root >&2; \
Line 85 
Line 86 
         exec ${MAKE} cleandir          exec ${MAKE} cleandir
         exec ${MAKE} includes          exec ${MAKE} includes
         cd ${.CURDIR}/lib && \          cd ${.CURDIR}/lib && \
             su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \              su ${BUILDUSER} -c 'exec ${MAKE}' && \
             NOMAN=1 exec ${MAKE} install              NOMAN=1 exec ${MAKE} install
         cd ${.CURDIR}/gnu/lib && \          cd ${.CURDIR}/gnu/lib && \
             su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \              su ${BUILDUSER} -c 'exec ${MAKE}' && \
             NOMAN=1 exec ${MAKE} install              NOMAN=1 exec ${MAKE} install
         su ${BUILDUSER} -c '${MAKE} depend && exec ${MAKE}' && \          su ${BUILDUSER} -c 'exec ${MAKE}' && \
             exec ${MAKE} install              exec ${MAKE} install
         /bin/sh ${.CURDIR}/distrib/sets/makeetcset ${.CURDIR} ${MAKE}          /bin/sh ${.CURDIR}/distrib/sets/makeetcset ${.CURDIR} ${MAKE}
 .endif  .endif
Line 108 
Line 109 
   
 .PHONY: ${CROSS_TARGETS} \  .PHONY: ${CROSS_TARGETS} \
         build regression-tests includes beforeinstall afterinstall \          build regression-tests includes beforeinstall afterinstall \
         all depend          all depend do-build
   
 .include <bsd.subdir.mk>  .include <bsd.subdir.mk>

Legend:
Removed from v.1.131  
changed lines
  Added in v.1.134