summaryrefslogtreecommitdiffstats
path: root/distrib/special/installboot/Makefile
blob: 148657ae01d52642936a00cfab4f32c1dec2a28e (plain) (blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#	$OpenBSD: Makefile,v 1.7 2016/08/10 14:27:15 deraadt Exp $

.PATH: ${.CURDIR}/../../../usr.sbin/installboot

PROG=		installboot
SRCS=		installboot.c util.c

CPPFLAGS=	-I${.CURDIR}/../../../usr.sbin/installboot
LDADD=		-lutil
DPADD=		${LIBUTIL}

.if ${MACHINE} == "alpha"
SRCS += stubs.c
.endif

.if ${MACHINE} == "amd64"
CFLAGS += -DSOFTRAID
SRCS += i386_installboot.c
SRCS += i386_nlist.c
SRCS += i386_softraid.c
.endif

.if ${MACHINE} == "armv7"
SRCS += stubs.c
.endif

.if ${MACHINE} == "hppa"
CFLAGS += -DBOOTSTRAP
SRCS += hppa_installboot.c
.endif

.if ${MACHINE} == "i386"
CFLAGS += -DSOFTRAID
SRCS += i386_installboot.c
SRCS += i386_nlist.c
SRCS += i386_softraid.c
.endif

.if ${MACHINE} == "landisk"
CFLAGS += -DBOOTSTRAP
SRCS += landisk_installboot.c
.endif

.if ${MACHINE} == "loongson"
SRCS += stubs.c
.endif

.if ${MACHINE} == "luna88k"
SRCS += stubs.c
.endif

.if ${MACHINE} == "macppc"
SRCS += stubs.c
.endif

.if ${MACHINE} == "octeon"
SRCS += stubs.c
.endif

.if ${MACHINE} == "sgi"
SRCS += stubs.c
.endif

.if ${MACHINE} == "socppc"
SRCS += stubs.c
.endif

.if ${MACHINE} == "sparc"
SRCS += stubs.c
.endif

.if ${MACHINE} == "sparc64"
CFLAGS += -DSOFTRAID
SRCS += sparc64_installboot.c
SRCS += sparc64_softraid.c
.endif

.if ${MACHINE} == "zaurus"
SRCS += stubs.c
.endif

.if !empty(CFLAGS:M-DBOOTSTRAP)
SRCS += bootstrap.c
.endif

.if !empty(CFLAGS:M-DSOFTRAID)
SRCS += softraid.c
.endif

.include <bsd.prog.mk>