1#	$NetBSD: Makefile,v 1.40 2009/12/13 05:01:33 nakayama Exp $
2
3# For now, we install the machine and arch includes, and symlink 'machine'
4# to the location of the machine includes (usually).
5#
6# Eventually, we should install everything.
7
8.include <bsd.own.mk>
9
10SUBDIR=	${MACHINE}
11ARCHSUBDIR= ${MACHINE_CPU}
12
13.if ${ARCHSUBDIR} == "mips64"
14ARCHSUBDIR= mips
15.endif
16.if ${ARCHSUBDIR} == "powerpc64"
17ARCHSUBDIR= powerpc
18.endif
19
20.if ${MACHINE} != ${ARCHSUBDIR}
21.if exists(${ARCHSUBDIR})
22SUBDIR+= ${ARCHSUBDIR}
23.endif
24.endif
25.if ${MACHINE} == sparc
26SUBDIR+= sparc64
27.endif
28.if (${MACHINE} == hpcmips || ${MACHINE} == hpcsh)
29SUBDIR+= hpc
30.endif
31.if (${MACHINE} == sun2 || ${MACHINE} == sun3)
32SUBDIR+= sun68k
33.endif
34.if defined(XEN_BUILD)
35SUBDIR+= xen
36.endif
37
38#SUBDIR=acorn26 acorn32 algor alpha amiga amigappc arm arc atari \
39#	bebox \
40#	cats cesfic cobalt \
41#	dreamcast \
42#	evbarm evbmips evbppc evbsh3 ews4800mips\
43#	hp300 hpc hpcarm hpcmips hpcsh \
44#	i386 iyonix \
45#	luna68k \
46#	m68k mac68k macppc mips mipsco mmeye mvme68k \
47#	netwinder news68k newsmips next68k \
48#	ofppc \
49#	pmax powerpc prep \
50#	sandpoint sbmips sgimips sh3 shark sparc sparc64 sun2 sun3 sun68k \
51#	rs6000 \
52#	vax \
53#	x68k x86_64 xen \
54#	zaurus
55
56INCSYMLINKS= ${MACHINE} /usr/include/machine
57
58INCSYMLINKS+= machine/float.h /usr/include/float.h
59
60.include <bsd.kinc.mk>
61