xref: /netbsd-src/usr.sbin/sysinst/Makefile (revision 212397c69a103ae7e5eafa8731ddfae671d2dee7)
1#	$NetBSD: Makefile,v 1.2 2014/07/26 19:56:30 dholland 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/acorn26
16SUBDIR += arch/acorn32
17SUBDIR += arch/alpha
18SUBDIR += arch/amd64
19SUBDIR += arch/amiga
20SUBDIR += arch/arc
21SUBDIR += arch/atari
22SUBDIR += arch/bebox
23SUBDIR += arch/cats
24SUBDIR += arch/cobalt
25SUBDIR += arch/emips
26SUBDIR += arch/evbarm
27SUBDIR += arch/evbmips
28SUBDIR += arch/evbppc
29SUBDIR += arch/ews4800mips
30SUBDIR += arch/hp300
31SUBDIR += arch/hpcarm
32SUBDIR += arch/hpcmips
33SUBDIR += arch/hpcsh
34SUBDIR += arch/hppa
35SUBDIR += arch/i386
36SUBDIR += arch/landisk
37SUBDIR += arch/mac68k
38SUBDIR += arch/macppc
39SUBDIR += arch/mipsco
40SUBDIR += arch/mvme68k
41SUBDIR += arch/news68k
42SUBDIR += arch/newsmips
43SUBDIR += arch/ofppc
44SUBDIR += arch/playstation2
45SUBDIR += arch/pmax
46SUBDIR += arch/prep
47SUBDIR += arch/sandpoint
48SUBDIR += arch/sgimips
49SUBDIR += arch/shark
50SUBDIR += arch/sparc
51SUBDIR += arch/sparc64
52SUBDIR += arch/vax
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