=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/Makefile,v retrieving revision 1.65 retrieving revision 1.66 diff -c -r1.65 -r1.66 *** src/Makefile 2001/03/28 22:52:22 1.65 --- src/Makefile 2001/05/14 12:34:26 1.66 *************** *** 1,4 **** ! # $OpenBSD: Makefile,v 1.65 2001/03/28 22:52:22 todd Exp $ # # For more information on building in tricky environments, please see --- 1,4 ---- ! # $OpenBSD: Makefile,v 1.66 2001/05/14 12:34:26 espie Exp $ # # For more information on building in tricky environments, please see *************** *** 53,100 **** regression-tests: @echo Running regression tests... ! @(cd ${.CURDIR}/regress && ${MAKE} regress) .endif includes: ! (cd ${.CURDIR}/include; ${MAKE} prereq; ${MAKE} includes) beforeinstall: ! .ifndef DESTDIR ! (cd ${.CURDIR}/etc && ${MAKE} DESTDIR= distrib-dirs) ! .else ! (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs) ! .endif ! (cd ${.CURDIR}/include; ${MAKE} includes) afterinstall: .ifndef NOMAN ! (cd ${.CURDIR}/share/man && ${MAKE} makedb) .endif build: .ifdef GLOBAL_AUTOCONF_CACHE cp /dev/null ${GLOBAL_AUTOCONF_CACHE} .endif ! (cd ${.CURDIR}/share/mk && ${SUDO} ${MAKE} install) ! (cd ${.CURDIR}/include; ${MAKE} prereq; ${SUDO} ${MAKE} includes) ${SUDO} ${MAKE} cleandir ! (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && \ ! NOMAN=1 ${SUDO} ${MAKE} install) ! (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \ ! NOMAN=1 ${SUDO} ${MAKE} install) .if (${KERBEROS:L} == "yes") ! (cd ${.CURDIR}/kerberosIV/lib && ${MAKE} depend && ${MAKE} && \ ! NOMAN=1 ${SUDO} ${MAKE} install) .endif ! (cd ${.CURDIR}/gnu/usr.bin/perl && \ ${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") ldconfig -R .endif ! ${MAKE} depend && ${MAKE} && ${SUDO} ${MAKE} install .if !defined(TARGET) cross-tools: --- 53,96 ---- regression-tests: @echo Running regression tests... ! @cd ${.CURDIR}/regress && exec ${MAKE} regress .endif includes: ! cd ${.CURDIR}/include && ${MAKE} prereq && exec ${MAKE} includes beforeinstall: ! cd ${.CURDIR}/etc && exec ${MAKE} DESTDIR=${DESTDIR} distrib-dirs ! cd ${.CURDIR}/include && exec ${MAKE} includes afterinstall: .ifndef NOMAN ! cd ${.CURDIR}/share/man && exec ${MAKE} makedb .endif build: .ifdef GLOBAL_AUTOCONF_CACHE cp /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 .if (${KERBEROS:L} == "yes") ! cd ${.CURDIR}/kerberosIV/lib && ${MAKE} depend && ${MAKE} && \ ! NOMAN=1 exec ${SUDO} ${MAKE} install .endif ! cd ${.CURDIR}/gnu/usr.bin/perl && \ ${MAKE} -f Makefile.bsd-wrapper depend && \ ${MAKE} -f Makefile.bsd-wrapper perl.lib && \ ! exec ${SUDO} ${MAKE} -f Makefile.bsd-wrapper install.lib .if (${MACHINE_ARCH} == "mips") ldconfig -R .endif ! ${MAKE} depend && ${MAKE} && exec ${SUDO} ${MAKE} install .if !defined(TARGET) cross-tools: