=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/Makefile,v retrieving revision 1.117 retrieving revision 1.135 diff -u -r1.117 -r1.135 --- src/Makefile 2011/09/17 16:59:53 1.117 +++ src/Makefile 2019/12/21 21:39:59 1.135 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.117 2011/09/17 16:59:53 pirofti Exp $ +# $OpenBSD: Makefile,v 1.135 2019/12/21 21:39:59 espie Exp $ # # For more information on building in tricky environments, please see @@ -27,7 +27,7 @@ # # 5) If you want to setup a cross-build environment, there is a "cross-gcc" # target available which upon completion of: -# make -f Makefile.cross TARGET= cross-gcc" +# "make -f Makefile.cross TARGET= cross-gcc" # (where is one of the names in the /sys/arch directory) will produce # a set of compilation tools along with the includes in the /usr/cross/ # directory. The "cross-distrib" target will build cross-tools as well as @@ -41,22 +41,18 @@ SUBDIR+= sys -.if (${KERBEROS5:L} == "yes") -SUBDIR+= kerberosV -.endif - .if make(clean) || make(cleandir) || make(obj) -SUBDIR+= distrib regress +SUBDIR+= etc distrib regress .endif -.if exists(regress) regression-tests: @echo Running regression tests... @cd ${.CURDIR}/regress && ${MAKE} depend && exec ${MAKE} regress -.endif includes: - cd ${.CURDIR}/include && ${MAKE} prereq && exec ${SUDO} ${MAKE} includes + cd ${.CURDIR}/include && \ + su ${BUILDUSER} -c 'exec ${MAKE} prereq' && \ + exec ${MAKE} includes beforeinstall: cd ${.CURDIR}/etc && exec ${MAKE} DESTDIR=${DESTDIR} distrib-dirs @@ -66,6 +62,7 @@ afterinstall: .ifndef NOMAN cd ${.CURDIR}/share/man && exec ${MAKE} makedb + cd ${.CURDIR}/distrib/sets && exec ${MAKE} makedb .endif .ifdef DESTDIR @@ -74,17 +71,29 @@ @false .else build: + umask ${WOBJUMASK}; exec ${MAKE} do-build + +do-build: .ifdef GLOBAL_AUTOCONF_CACHE - cp /dev/null ${GLOBAL_AUTOCONF_CACHE} + ${INSTALL} -c -o ${BUILDUSER} -g ${WOBJGROUP} -m 664 /dev/null \ + ${GLOBAL_AUTOCONF_CACHE} .endif - cd ${.CURDIR}/share/mk && exec ${SUDO} ${MAKE} install - cd ${.CURDIR}/include && ${MAKE} prereq && exec ${SUDO} ${MAKE} includes - ${SUDO} ${MAKE} cleandir - cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && \ - NOMAN=1 exec ${SUDO} ${MAKE} install - cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \ - NOMAN=1 exec ${SUDO} ${MAKE} install - ${MAKE} depend && ${MAKE} && exec ${SUDO} ${MAKE} install + @if [[ `id -u` -ne 0 ]]; then \ + echo $@ must be called by root >&2; \ + false; \ + fi + cd ${.CURDIR}/share/mk && exec ${MAKE} install + exec ${MAKE} cleandir + exec ${MAKE} includes + cd ${.CURDIR}/lib && \ + su ${BUILDUSER} -c 'exec ${MAKE}' && \ + NOMAN=1 exec ${MAKE} install + cd ${.CURDIR}/gnu/lib && \ + su ${BUILDUSER} -c 'exec ${MAKE}' && \ + NOMAN=1 exec ${MAKE} install + su ${BUILDUSER} -c 'exec ${MAKE}' && \ + exec ${MAKE} install + /bin/sh ${.CURDIR}/distrib/sets/makeetcset ${.CURDIR} ${MAKE} .endif CROSS_TARGETS=cross-env cross-dirs cross-obj cross-includes cross-binutils \ @@ -100,6 +109,6 @@ .PHONY: ${CROSS_TARGETS} \ build regression-tests includes beforeinstall afterinstall \ - all depend + all do-build .include