ecebb3cc1d
This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld. Not currently touching the numerous instances in ^/tools. MFC after: 1 week
18 lines
498 B
Makefile
18 lines
498 B
Makefile
# $FreeBSD$
|
|
|
|
# ZFS is not supported, we want debugging until this is vetted and
|
|
# we don't want the gptboot.efifat thing created.
|
|
MK_LOADER_ZFS=no
|
|
EFI_DEBUG=yes
|
|
|
|
BOOT1?= gptboot
|
|
.PATH: ${SRCTOP}/stand/efi/boot1 ${SRCTOP}/stand/libsa
|
|
CFLAGS+= -I${SRCTOP}/stand/efi/boot1
|
|
CFLAGS+= -I${.CURDIR}
|
|
CFLAGS+= -DBOOTPROG=\"gptboot.efi\"
|
|
CFLAGS+= -DHAVE_MEMCPY -I${SRCTOP}/sys/contrib/zlib
|
|
SRCS+= gpt.c
|
|
CWARNFLAGS.gpt.c+= -Wno-sign-compare -Wno-cast-align
|
|
WARNS?=6
|
|
.include "${.CURDIR}/../boot1/Makefile"
|