1#	$NetBSD: Makefile,v 1.4 2024/01/06 07:38:13 thorpej Exp $
2#
3# sysinst is usually built when the crunched install binary is built,
4# but can be built here as a normal program for testing.
5
6.if exists(arch/${MACHINE})
7SUBDIR+=arch/${MACHINE}
8.else
9SUBDIR+=arch/dummy
10.endif
11
12
13.if ALL_MACHINES
14
15SUBDIR += arch/acorn32
16SUBDIR += arch/alpha
17SUBDIR += arch/amd64
18SUBDIR += arch/amiga
19SUBDIR += arch/arc
20SUBDIR += arch/atari
21SUBDIR += arch/bebox
22SUBDIR += arch/cats
23SUBDIR += arch/cobalt
24SUBDIR += arch/emips
25SUBDIR += arch/evbarm
26SUBDIR += arch/evbmips
27SUBDIR += arch/evbppc
28SUBDIR += arch/ews4800mips
29SUBDIR += arch/hp300
30SUBDIR += arch/hpcarm
31SUBDIR += arch/hpcmips
32SUBDIR += arch/hpcsh
33SUBDIR += arch/hppa
34SUBDIR += arch/i386
35SUBDIR += arch/landisk
36SUBDIR += arch/mac68k
37SUBDIR += arch/macppc
38SUBDIR += arch/mipsco
39SUBDIR += arch/mvme68k
40SUBDIR += arch/news68k
41SUBDIR += arch/newsmips
42SUBDIR += arch/ofppc
43SUBDIR += arch/playstation2
44SUBDIR += arch/pmax
45SUBDIR += arch/prep
46SUBDIR += arch/sandpoint
47SUBDIR += arch/sgimips
48SUBDIR += arch/shark
49SUBDIR += arch/sparc
50SUBDIR += arch/sparc64
51SUBDIR += arch/vax
52SUBDIR += arch/virt68k
53SUBDIR += arch/x68k
54SUBDIR += arch/zaurus
55
56# XXX notyet SUBDIR += arch/iyonix
57
58# These dirs are present in sys/arch but not here:
59#    amigappc cesfic dreamcast epoc32 evbsh3 ia64 ibmnws iyonix luna68k
60#    mmeye mvmeppc netwinder next68k rs6000 sbmips sun2 sun3
61# (also evbsh5, but it doesn't really exist)
62SUBDIR += arch/dummy
63
64.endif
65
66install:
67
68.include <bsd.subdir.mk>
69