]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/boot/powerpc/ofw/Makefile
Synchronize releng/9.2 Forth code with stable/9 via MFS of 2 revisions:
[FreeBSD/releng/9.2.git] / sys / boot / powerpc / ofw / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4 MK_SSP=         no
5
6 PROG=           loader
7 NEWVERSWHAT=    "Open Firmware loader" ${MACHINE_ARCH}
8 BINDIR?=        /boot
9 INSTALLFLAGS=   -b
10
11 # Architecture-specific loader code
12 SRCS=           conf.c metadata.c vers.c start.c
13 SRCS+=          ucmpdi2.c
14
15 LOADER_DISK_SUPPORT?=   yes
16 LOADER_UFS_SUPPORT?=    yes
17 LOADER_CD9660_SUPPORT?= yes
18 LOADER_EXT2FS_SUPPORT?= no
19 LOADER_NET_SUPPORT?=    yes
20 LOADER_NFS_SUPPORT?=    yes
21 LOADER_TFTP_SUPPORT?=   no
22 LOADER_GZIP_SUPPORT?=   yes
23 LOADER_BZIP2_SUPPORT?=  no
24
25 .if ${LOADER_DISK_SUPPORT} == "yes"
26 CFLAGS+=        -DLOADER_DISK_SUPPORT
27 .endif
28 .if ${LOADER_UFS_SUPPORT} == "yes"
29 CFLAGS+=        -DLOADER_UFS_SUPPORT
30 .endif
31 .if ${LOADER_CD9660_SUPPORT} == "yes"
32 CFLAGS+=        -DLOADER_CD9660_SUPPORT
33 .endif
34 .if ${LOADER_EXT2FS_SUPPORT} == "yes"
35 CFLAGS+=        -DLOADER_EXT2FS_SUPPORT
36 .endif
37 .if ${LOADER_GZIP_SUPPORT} == "yes"
38 CFLAGS+=        -DLOADER_GZIP_SUPPORT
39 .endif
40 .if ${LOADER_BZIP2_SUPPORT} == "yes"
41 CFLAGS+=        -DLOADER_BZIP2_SUPPORT
42 .endif
43 .if ${LOADER_NET_SUPPORT} == "yes"
44 CFLAGS+=        -DLOADER_NET_SUPPORT
45 .endif
46 .if ${LOADER_NFS_SUPPORT} == "yes"
47 CFLAGS+=        -DLOADER_NFS_SUPPORT
48 .endif
49 .if ${LOADER_TFTP_SUPPORT} == "yes"
50 CFLAGS+=        -DLOADER_TFTP_SUPPORT
51 .endif
52
53 .if ${MK_FORTH} != "no"
54 # Enable BootForth
55 BOOT_FORTH=     yes
56 CFLAGS+=        -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/powerpc
57 LIBFICL=        ${.OBJDIR}/../../ficl/libficl.a
58 .endif
59
60 # Avoid the open-close-dance for every file access as some firmwares perform
61 # an auto-negotiation on every open of the network interface and thus causes
62 # netbooting to take horribly long.
63 CFLAGS+=        -DNETIF_OPEN_CLOSE_ONCE
64
65 # Always add MI sources
66 .PATH:          ${.CURDIR}/../../common ${.CURDIR}/../../../libkern
67 .include        "${.CURDIR}/../../common/Makefile.inc"
68 CFLAGS+=        -I${.CURDIR}/../../common -I${.CURDIR}/../../..
69 CFLAGS+=        -I.
70
71 CLEANFILES+=    vers.c loader.help
72
73 CFLAGS+=        -ffreestanding -msoft-float
74 # load address. set in linker script
75 RELOC?=         0x1C00000
76 CFLAGS+=        -DRELOC=${RELOC}
77
78 LDFLAGS=        -nostdlib -static -T ${.CURDIR}/ldscript.powerpc
79
80 # 64-bit bridge extensions
81 CFLAGS+= -Wa,-mppc64bridge
82
83 # Pull in common loader code
84 .PATH:          ${.CURDIR}/../../ofw/common
85 .include        "${.CURDIR}/../../ofw/common/Makefile.inc"
86
87 # Open Firmware standalone support library
88 LIBOFW=         ${.OBJDIR}/../../ofw/libofw/libofw.a
89 CFLAGS+=        -I${.CURDIR}/../../ofw/libofw
90
91 # where to get libstand from
92 CFLAGS+=        -I${.CURDIR}/../../../../lib/libstand/
93
94 DPADD=          ${LIBFICL} ${LIBOFW} ${LIBSTAND}
95 LDADD=          ${LIBFICL} ${LIBOFW} -lstand
96
97 vers.c: ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version
98         sh ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version ${NEWVERSWHAT}
99
100 loader.help: help.common help.ofw
101         cat ${.ALLSRC} | \
102             awk -f ${.CURDIR}/../../common/merge_help.awk > ${.TARGET}
103
104 .PATH: ${.CURDIR}/../../forth
105 FILES=  loader.help loader.4th support.4th loader.conf
106 FILES+= screen.4th frames.4th
107 FILES+= beastie.4th brand.4th check-password.4th color.4th delay.4th
108 FILES+= menu.4th menu-commands.4th menusets.4th shortcuts.4th version.4th
109 FILESDIR_loader.conf=   /boot/defaults
110
111 .if !exists(${DESTDIR}/boot/loader.rc)
112 FILES+= loader.rc
113 .endif
114
115 .if !exists(${DESTDIR}/boot/menu.rc)
116 FILES+= menu.rc
117 .endif
118
119 .include <bsd.prog.mk>