2fe8fb192f
There is important information about booting non-ack images in docs/UPDATING. ack/aout-format images can't be built any more, and booting clang/ELF-format ones is a little different. Updating to the new boot monitor is recommended. Changes in this commit: . drop boot monitor -> allowing dropping ack support . facility to copy ELF boot files to /boot so that old boot monitor can still boot fairly easily, see UPDATING . no more ack-format libraries -> single-case libraries . some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases . drop several ack toolchain commands, but not all support commands (e.g. aal is gone but acksize is not yet). . a few libc files moved to netbsd libc dir . new /bin/date as minix date used code in libc/ . test compile fix . harmonize includes . /usr/lib is no longer special: without ack, /usr/lib plays no kind of special bootstrapping role any more and bootstrapping is done exclusively through packages, so releases depend even less on the state of the machine making them now. . rename nbsd_lib* to lib* . reduce mtree
62 lines
1.3 KiB
Makefile
62 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.40 2009/12/13 05:01:33 nakayama Exp $
|
|
|
|
# For now, we install the machine and arch includes, and symlink 'machine'
|
|
# to the location of the machine includes (usually).
|
|
#
|
|
# Eventually, we should install everything.
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= ${MACHINE}
|
|
ARCHSUBDIR= ${MACHINE_CPU}
|
|
|
|
.if ${ARCHSUBDIR} == "mips64"
|
|
ARCHSUBDIR= mips
|
|
.endif
|
|
.if ${ARCHSUBDIR} == "powerpc64"
|
|
ARCHSUBDIR= powerpc
|
|
.endif
|
|
|
|
.if ${MACHINE} != ${ARCHSUBDIR}
|
|
.if exists(${ARCHSUBDIR})
|
|
SUBDIR+= ${ARCHSUBDIR}
|
|
.endif
|
|
.endif
|
|
.if ${MACHINE} == sparc
|
|
SUBDIR+= sparc64
|
|
.endif
|
|
.if (${MACHINE} == hpcmips || ${MACHINE} == hpcsh)
|
|
SUBDIR+= hpc
|
|
.endif
|
|
.if (${MACHINE} == sun2 || ${MACHINE} == sun3)
|
|
SUBDIR+= sun68k
|
|
.endif
|
|
.if defined(XEN_BUILD)
|
|
SUBDIR+= xen
|
|
.endif
|
|
|
|
#SUBDIR=acorn26 acorn32 algor alpha amiga amigappc arm arc atari \
|
|
# bebox \
|
|
# cats cesfic cobalt \
|
|
# dreamcast \
|
|
# evbarm evbmips evbppc evbsh3 ews4800mips\
|
|
# hp300 hpc hpcarm hpcmips hpcsh \
|
|
# i386 iyonix \
|
|
# luna68k \
|
|
# m68k mac68k macppc mips mipsco mmeye mvme68k \
|
|
# netwinder news68k newsmips next68k \
|
|
# ofppc \
|
|
# pmax powerpc prep \
|
|
# sandpoint sbmips sgimips sh3 shark sparc sparc64 sun2 sun3 sun68k \
|
|
# rs6000 \
|
|
# vax \
|
|
# x68k x86_64 xen \
|
|
# zaurus
|
|
|
|
INCSYMLINKS= ${MACHINE} /usr/include/machine
|
|
|
|
INCSYMLINKS+= machine/float.h /usr/include/float.h \
|
|
machine/stdarg.h /usr/include/stdarg.h
|
|
|
|
|
|
.include <bsd.inc.mk>
|