Do not blow away my egcs libgcc at the beginning of a build.
This commit is contained in:
parent
d97448cc55
commit
0ed3129ab7
14
Makefile
14
Makefile
@ -1,4 +1,4 @@
|
||||
# $NetBSD: Makefile,v 1.59 1998/07/24 16:51:33 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.60 1998/07/25 10:35:53 mycroft Exp $
|
||||
|
||||
.include <bsd.own.mk> # for configuration variables.
|
||||
|
||||
@ -56,7 +56,13 @@ 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)
|
||||
(cd ${.CURDIR}/gnu/usr.bin/gcc/libgcc && ${MAKE} depend && ${MAKE} && ${MAKE} install)
|
||||
.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
|
||||
.if exists(domestic) && !defined(EXPORTABLE_SYSTEM)
|
||||
# libtelnet depends on libdes and libkrb. libkrb depends on
|
||||
# libcom_err.
|
||||
@ -72,8 +78,8 @@ build: beforeinstall
|
||||
(cd ${.CURDIR}/domestic/lib/libkrb && \
|
||||
${MAKE} depend && ${MAKE} && ${MAKE} install)
|
||||
.endif
|
||||
(cd ${.CURDIR}/domestic/lib/ && ${MAKE} depend && ${MAKE} && \
|
||||
${MAKE} install)
|
||||
(cd ${.CURDIR}/domestic/lib && \
|
||||
${MAKE} depend && ${MAKE} && ${MAKE} install)
|
||||
.endif
|
||||
${MAKE} depend && ${MAKE} && ${MAKE} install
|
||||
.if defined(USE_EGCS)
|
||||
|
Loading…
Reference in New Issue
Block a user