blob: 42297a2ee25545af7b5098d937a0363a51f7d238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# $NetBSD: Makefile,v 1.14 2002/03/24 15:01:57 kent Exp $
.if ${MACHINE} == "i386"
SUBDIR+= freebsd_aout freebsd_elf linux_elf svr4_elf pecoff
.endif
.if ${MACHINE_ARCH} == "sparc64"
SUBDIR+= elf netbsd32_aout netbsd32_elf sunos32_aout svr4_32_elf
.endif
# These are untested, but do compile. Once they are tested,
# move them above.
.if !make(install)
.if ${MACHINE} == "alpha"
SUBDIR+= linux_aout linux_elf osf1_ecoff
.endif
.if ${MACHINE} == "hp300"
SUBDIR+= hpux_aout
.endif
.if ${MACHINE} == "i386"
SUBDIR+= aout ibcs2_coff ibcs2_elf ibcs2_xout linux_aout
.endif
.if ${MACHINE_ARCH} == "m68k"
SUBDIR+= linux_aout linux_elf sunos_aout m68k4k
.endif
.if ${MACHINE_ARCH} == "sparc"
SUBDIR+= aout sunos_aout svr4_elf
.endif
.if ${MACHINE_ARCH} == "vax"
SUBDIR+= vax1k
.endif
.endif # !make(install)
.include <bsd.kinc.mk>
|