From 1d3f1b543e9ccf13b9b9326ec4cd62a3ac8b33c3 Mon Sep 17 00:00:00 2001 From: lukem Date: Mon, 26 Aug 2002 04:40:20 +0000 Subject: [PATCH] add "do-ld.elf_so" target, which builds & installs libexec/ld.elf_so. call after do-gnu-lib but before do-build. --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fbe35491a57ef..3c8a9770c0dd1 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.183 2002/08/22 02:23:23 lukem Exp $ +# $NetBSD: Makefile,v 1.184 2002/08/26 04:40:20 lukem Exp $ # This is the top-level makefile for building NetBSD. For an outline of # how to build a snapshot or release, as well as other release engineering @@ -50,6 +50,7 @@ # do-lib-csu: builds and installs prerequisites from lib/csu. # do-lib: builds and installs prerequisites from lib. # do-gnu-lib: builds and installs prerequisites from gnu/lib. +# do-ld.elf_so: builds and installs prerequisites from libexec/ld.elf_so # do-build: builds and installs the entire system. .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == "" @@ -138,7 +139,7 @@ BUILDTARGETS+= do-distrib-dirs .if !defined(NOINCLUDES) BUILDTARGETS+= includes .endif -BUILDTARGETS+= do-lib-csu do-lib do-gnu-lib do-build +BUILDTARGETS+= do-lib-csu do-lib do-gnu-lib do-ld.elf_so do-build # Enforce proper ordering of some rules. @@ -203,6 +204,11 @@ do-${dir:S/\//-/}: .endfor .endfor +do-ld.elf_so: +.for targ in dependall install + (cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ}) +.endfor + do-build: .for targ in dependall install (cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)