| version 1.188, 2002/09/21 08:19:28 |
version 1.189, 2002/11/12 14:33:48 |
|
|
| # do-lib-libc: builds and installs prerequisites from lib/libc. |
# do-lib-libc: builds and installs prerequisites from lib/libc. |
| # do-lib: builds and installs prerequisites from lib. |
# do-lib: builds and installs prerequisites from lib. |
| # do-gnu-lib: builds and installs prerequisites from gnu/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-ld.so: builds and installs prerequisites from libexec/ld.*_so. |
| # do-build: builds and installs the entire system. |
# do-build: builds and installs the entire system. |
| |
|
| .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == "" |
.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == "" |
| Line 140 BUILDTARGETS+= do-distrib-dirs |
|
| Line 140 BUILDTARGETS+= do-distrib-dirs |
|
| .if !defined(NOINCLUDES) |
.if !defined(NOINCLUDES) |
| BUILDTARGETS+= includes |
BUILDTARGETS+= includes |
| .endif |
.endif |
| BUILDTARGETS+= do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.elf_so do-build |
BUILDTARGETS+= do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.so do-build |
| |
|
| # Enforce proper ordering of some rules. |
# Enforce proper ordering of some rules. |
| |
|
| Line 208 do-${dir:S/\//-/}: |
|
| Line 208 do-${dir:S/\//-/}: |
|
| .endfor |
.endfor |
| .endfor |
.endfor |
| |
|
| do-ld.elf_so: |
do-ld.so: |
| .for targ in dependall install |
.for targ in dependall install |
| |
.if (${OBJECT_FMT} == "a.out") |
| |
(cd ${.CURDIR}/libexec/ld.aout_so && ${MAKE} ${targ}) |
| |
.endif |
| |
.if (${OBJECT_FMT} == "ELF") |
| (cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ}) |
(cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ}) |
| |
.endif |
| .endfor |
.endfor |
| |
|
| do-build: |
do-build: |