Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/Makefile,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -r1.54 -r1.55 --- src/Makefile 1998/05/21 01:40:19 1.54 +++ src/Makefile 1998/05/21 11:53:49 1.55 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.54 1998/05/21 01:40:19 thorpej Exp $ +# $NetBSD: Makefile,v 1.55 1998/05/21 11:53:49 tv Exp $ .include # for configuration variables. @@ -66,21 +66,6 @@ build: beforeinstall (cd ${.CURDIR}/lib/csu && ${MAKE} depend && ${MAKE} && ${MAKE} install) (cd ${.CURDIR}/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && ${MAKE} install) -.if (${MACHINE_ARCH} == "arm32") || \ - (${MACHINE_ARCH} == "i386") || \ - (${MACHINE_ARCH} == "mips") || \ - (${MACHINE_ARCH} == "m68k") || \ - (${MACHINE_ARCH} == "ns32k") || \ - (${MACHINE_ARCH} == "sparc") || \ - (${MACHINE_ARCH} == "vax") -.if defined(USE_EGCS) - (cd ${.CURDIR}/gnu/usr.bin/egcs/libgcc &&\ - ${MAKE} depend && ${MAKE} && ${MAKE} install) -.else - (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc &&\ - ${MAKE} depend && ${MAKE} && ${MAKE} install) -.endif # USE_EGCS -.endif # MACHINE_ARCH (cd ${.CURDIR}/usr.bin/lex &&\ ${MAKE} depend && ${MAKE} && ${MAKE} install) (cd ${.CURDIR}/usr.bin/yacc && \ @@ -106,6 +91,21 @@ build: beforeinstall ${MAKE} install) .endif ${MAKE} depend && ${MAKE} && ${MAKE} install +.if (${MACHINE_ARCH} == "arm32") || \ + (${MACHINE_ARCH} == "i386") || \ + (${MACHINE_ARCH} == "mips") || \ + (${MACHINE_ARCH} == "m68k") || \ + (${MACHINE_ARCH} == "ns32k") || \ + (${MACHINE_ARCH} == "sparc") || \ + (${MACHINE_ARCH} == "vax") +.if defined(USE_EGCS) + (cd ${.CURDIR}/gnu/usr.bin/egcs/libgcc &&\ + ${MAKE} depend && ${MAKE} && ${MAKE} install) +.else + (cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc &&\ + ${MAKE} depend && ${MAKE} && ${MAKE} install) +.endif # USE_EGCS +.endif # MACHINE_ARCH @echo -n "Build finished at: " @date