Makefile revision 294852
1# $FreeBSD: stable/10/sys/boot/i386/libi386/Makefile 294852 2016-01-26 21:35:47Z jkim $
2#
3LIB=			i386
4INTERNALLIB=
5
6SRCS=	biosacpi.c bioscd.c biosdisk.c biosmem.c biospnp.c \
7	biospci.c biossmap.c bootinfo.c bootinfo32.c bootinfo64.c \
8	comconsole.c devicename.c elf32_freebsd.c \
9	elf64_freebsd.c multiboot.c multiboot_tramp.S \
10	i386_copy.c i386_module.c nullconsole.c pxe.c pxetramp.s \
11	smbios.c time.c vidconsole.c amd64_tramp.S spinconsole.c
12.PATH:	${.CURDIR}/../../zfs
13SRCS+=	devicename_stubs.c
14
15# Enable PXE TFTP or NFS support, not both.
16.if defined(LOADER_TFTP_SUPPORT)
17CFLAGS+=	-DLOADER_TFTP_SUPPORT
18.else
19CFLAGS+=	-DLOADER_NFS_SUPPORT
20.endif
21
22BOOT_COMCONSOLE_PORT?= 0x3f8
23CFLAGS+=	-DCOMPORT=${BOOT_COMCONSOLE_PORT}
24
25BOOT_COMCONSOLE_SPEED?= 9600
26CFLAGS+=	-DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
27
28.ifdef(BOOT_BIOSDISK_DEBUG)
29# Make the disk code more talkative
30CFLAGS+= -DDISK_DEBUG
31.endif
32
33.if !defined(BOOT_HIDE_SERIAL_NUMBERS)
34# Export serial numbers, UUID, and asset tag from loader.
35CFLAGS+= -DSMBIOS_SERIAL_NUMBERS
36.if defined(BOOT_LITTLE_ENDIAN_UUID)
37# Use little-endian UUID format as defined in SMBIOS 2.6.
38CFLAGS+= -DSMBIOS_LITTLE_ENDIAN_UUID
39.elif defined(BOOT_NETWORK_ENDIAN_UUID)
40# Use network-endian UUID format for backward compatibility.
41CFLAGS+= -DSMBIOS_NETWORK_ENDIAN_UUID
42.endif
43.endif
44
45# Include simple terminal emulation (cons25-compatible)
46CFLAGS+= -DTERM_EMU
47
48# XXX: make alloca() useable
49CFLAGS+= -Dalloca=__builtin_alloca
50
51CFLAGS+=	-I${.CURDIR}/../../common -I${.CURDIR}/../common \
52		-I${.CURDIR}/../btx/lib \
53		-I${.CURDIR}/../../../contrib/dev/acpica/include \
54		-I${.CURDIR}/../../.. -I.
55# the location of libstand
56CFLAGS+=	-I${.CURDIR}/../../../../lib/libstand/
57
58# Suppress warning from clang for FreeBSD %b and %D formats
59CFLAGS+= -fformat-extensions
60
61.if ${MACHINE_CPUARCH} == "amd64"
62CLEANFILES+=	machine
63machine:
64	ln -sf ${.CURDIR}/../../../i386/include machine
65.endif
66
67.include <bsd.lib.mk>
68
69# XXX: clang integrated-as doesn't grok .codeNN directives yet
70CFLAGS.amd64_tramp.S=	${CLANG_NO_IAS}
71CFLAGS.multiboot_tramp.S=	${CLANG_NO_IAS}
72CFLAGS+=		${CFLAGS.${.IMPSRC:T}}
73
74.if ${MACHINE_CPUARCH} == "amd64"
75beforedepend ${OBJS}: machine
76.endif
77