]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - sys/boot/i386/libi386/Makefile
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / sys / boot / i386 / libi386 / Makefile
1 # $FreeBSD$
2 #
3 LIB=                    i386
4 INTERNALLIB=
5
6 SRCS=   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
13 SRCS+=  devicename_stubs.c
14
15 # Enable PXE TFTP or NFS support, not both.
16 .if defined(LOADER_TFTP_SUPPORT)
17 CFLAGS+=        -DLOADER_TFTP_SUPPORT
18 .else
19 CFLAGS+=        -DLOADER_NFS_SUPPORT
20 .endif
21
22 BOOT_COMCONSOLE_PORT?= 0x3f8
23 CFLAGS+=        -DCOMPORT=${BOOT_COMCONSOLE_PORT}
24
25 BOOT_COMCONSOLE_SPEED?= 9600
26 CFLAGS+=        -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
27
28 .ifdef(BOOT_BIOSDISK_DEBUG)
29 # Make the disk code more talkative
30 CFLAGS+= -DDISK_DEBUG
31 .endif
32
33 .if !defined(BOOT_HIDE_SERIAL_NUMBERS)
34 # Export serial numbers, UUID, and asset tag from loader.
35 CFLAGS+= -DSMBIOS_SERIAL_NUMBERS
36 .if defined(BOOT_LITTLE_ENDIAN_UUID)
37 # Use little-endian UUID format as defined in SMBIOS 2.6.
38 CFLAGS+= -DSMBIOS_LITTLE_ENDIAN_UUID
39 .elif defined(BOOT_NETWORK_ENDIAN_UUID)
40 # Use network-endian UUID format for backward compatibility.
41 CFLAGS+= -DSMBIOS_NETWORK_ENDIAN_UUID
42 .endif
43 .endif
44
45 # Include simple terminal emulation (cons25-compatible)
46 CFLAGS+= -DTERM_EMU
47
48 # XXX: make alloca() useable
49 CFLAGS+= -Dalloca=__builtin_alloca
50
51 CFLAGS+=        -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
56 CFLAGS+=        -I${.CURDIR}/../../../../lib/libstand/
57
58 # Suppress warning from clang for FreeBSD %b and %D formats
59 CFLAGS+= -fformat-extensions
60
61 .if ${MACHINE_CPUARCH} == "amd64"
62 CLEANFILES+=    machine
63 machine:
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
70 CFLAGS.amd64_tramp.S=   ${CLANG_NO_IAS}
71 CFLAGS.multiboot_tramp.S=       ${CLANG_NO_IAS}
72 CFLAGS+=                ${CFLAGS.${.IMPSRC:T}}
73
74 .if ${MACHINE_CPUARCH} == "amd64"
75 beforedepend ${OBJS}: machine
76 .endif