4808d892e4
This makes the presence of sysinst in /usr/sbin MI (as intended) -- remember that one of the goals is for sysinst to be able to install chroots, and installing a chroot is a sensible operation on all ports, even those for which an installer per se might not make sense. Currently this dummy architecture fails instead of doing anything, but as they say, one thing at a time.
69 lines
1.5 KiB
Makefile
69 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.2 2014/07/26 19:56:30 dholland Exp $
|
|
#
|
|
# sysinst is usually built when the crunched install binary is built,
|
|
# but can be built here as a normal program for testing.
|
|
|
|
.if exists(arch/${MACHINE})
|
|
SUBDIR+=arch/${MACHINE}
|
|
.else
|
|
SUBDIR+=arch/dummy
|
|
.endif
|
|
|
|
|
|
.if ALL_MACHINES
|
|
|
|
SUBDIR = arch/acorn26
|
|
SUBDIR += arch/acorn32
|
|
SUBDIR += arch/alpha
|
|
SUBDIR += arch/amd64
|
|
SUBDIR += arch/amiga
|
|
SUBDIR += arch/arc
|
|
SUBDIR += arch/atari
|
|
SUBDIR += arch/bebox
|
|
SUBDIR += arch/cats
|
|
SUBDIR += arch/cobalt
|
|
SUBDIR += arch/emips
|
|
SUBDIR += arch/evbarm
|
|
SUBDIR += arch/evbmips
|
|
SUBDIR += arch/evbppc
|
|
SUBDIR += arch/ews4800mips
|
|
SUBDIR += arch/hp300
|
|
SUBDIR += arch/hpcarm
|
|
SUBDIR += arch/hpcmips
|
|
SUBDIR += arch/hpcsh
|
|
SUBDIR += arch/hppa
|
|
SUBDIR += arch/i386
|
|
SUBDIR += arch/landisk
|
|
SUBDIR += arch/mac68k
|
|
SUBDIR += arch/macppc
|
|
SUBDIR += arch/mipsco
|
|
SUBDIR += arch/mvme68k
|
|
SUBDIR += arch/news68k
|
|
SUBDIR += arch/newsmips
|
|
SUBDIR += arch/ofppc
|
|
SUBDIR += arch/playstation2
|
|
SUBDIR += arch/pmax
|
|
SUBDIR += arch/prep
|
|
SUBDIR += arch/sandpoint
|
|
SUBDIR += arch/sgimips
|
|
SUBDIR += arch/shark
|
|
SUBDIR += arch/sparc
|
|
SUBDIR += arch/sparc64
|
|
SUBDIR += arch/vax
|
|
SUBDIR += arch/x68k
|
|
SUBDIR += arch/zaurus
|
|
|
|
# XXX notyet SUBDIR += arch/iyonix
|
|
|
|
# These dirs are present in sys/arch but not here:
|
|
# amigappc cesfic dreamcast epoc32 evbsh3 ia64 ibmnws iyonix luna68k
|
|
# mmeye mvmeppc netwinder next68k rs6000 sbmips sun2 sun3
|
|
# (also evbsh5, but it doesn't really exist)
|
|
SUBDIR += arch/dummy
|
|
|
|
.endif
|
|
|
|
install:
|
|
|
|
.include <bsd.subdir.mk>
|