xref: /netbsd-src/usr.sbin/sysinst/Makefile (revision 404ee5b9334f618040b6cdef96a0ff35a6fc4636)
1#	$NetBSD: Makefile,v 1.3 2018/01/24 09:04:46 skrll 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/x68k
53SUBDIR += arch/zaurus
54
55# XXX notyet SUBDIR += arch/iyonix
56
57# These dirs are present in sys/arch but not here:
58#    amigappc cesfic dreamcast epoc32 evbsh3 ia64 ibmnws iyonix luna68k
59#    mmeye mvmeppc netwinder next68k rs6000 sbmips sun2 sun3
60# (also evbsh5, but it doesn't really exist)
61SUBDIR += arch/dummy
62
63.endif
64
65install:
66
67.include <bsd.subdir.mk>
68