blob: 9b461c0ac614063d61c54504ffaa9659e945dc57 (
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
43
44
45
46
47
48
49
50
51
52
|
# $OpenBSD: Makefile,v 1.18 2022/08/31 18:46:06 miod 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} == "amd64" || ${MACHINE} == "i386"
CFLAGS += -DSOFTRAID
SRCS += i386_installboot.c
SRCS += i386_nlist.c
SRCS += i386_softraid.c
.elif ${MACHINE} == "armv7" || ${MACHINE} == "arm64" || ${MACHINE} == "riscv64"
. if ${MACHINE} == "arm64"
CFLAGS += -DSOFTRAID
SRCS += efi_softraid.c
. endif
SRCS += efi_installboot.c
.elif ${MACHINE} == "hppa"
CFLAGS += -DBOOTSTRAP
SRCS += hppa_installboot.c
.elif ${MACHINE} == "landisk"
SRCS += landisk_installboot.c
.elif ${MACHINE} == "loongson"
SRCS += loongson_installboot.c
.elif ${MACHINE} == "macppc"
SRCS += macppc_installboot.c
.elif ${MACHINE} == "powerpc64"
SRCS += powerpc64_installboot.c
.elif ${MACHINE} == "octeon"
SRCS += octeon_installboot.c
.elif ${MACHINE} == "sparc64"
CFLAGS += -DSOFTRAID
SRCS += sparc64_installboot.c
SRCS += sparc64_softraid.c
.else
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>
|