d752305b9d
- move the per-ABI subdir list into compatsubdir.mk. use the new MAKEDIRTARGETENV support to force a new objdir for compat library builds, and simply traverse over the normal src path once for each ABI to be built. this eliminates all the shadow Makefile's for every library, and allows multiple compat ABIs to be built for a single platform, such as both o32 and n64 for mips64's default n32. - compat/Makefile is merely a subdir provider now, and takes the real information from archdirs.mk
16 lines
337 B
Makefile
16 lines
337 B
Makefile
# $NetBSD: archdirs.mk,v 1.1 2009/12/13 09:27:13 mrg Exp $
|
|
|
|
# list of subdirs used per-platform
|
|
|
|
.if ${MACHINE} == "sparc64"
|
|
ARCHDIR_SUBDIR= sparc64/sparc
|
|
.endif
|
|
|
|
.if ${MACHINE} == "amd64"
|
|
ARCHDIR_SUBDIR= amd64/i386
|
|
.endif
|
|
|
|
.if (${MACHINE_ARCH} == "mips64eb" || ${MACHINE_ARCH} == "mips64el")
|
|
ARCHDIR_SUBDIR= mips64/64 mips64/o32
|
|
.endif
|