blob: 3b94ee0e49878bd2bd7581cd15d1c50063fc2def [file] [log] [blame]
Kevin O'Connor14458432009-05-23 18:21:18 -04001# SeaBIOS build system
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05002#
Kevin O'Connor36feea92012-02-11 10:49:45 -05003# Copyright (C) 2008-2012 Kevin O'Connor <kevin@koconnor.net>
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05004#
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05005# This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05006
7# Output directory
8OUT=out/
9
Gerd Hoffmann18140142013-09-20 13:29:01 +020010# Common command definitions
11export HOSTCC := $(CC)
12export CONFIG_SHELL := sh
13export KCONFIG_AUTOHEADER := autoconf.h
14export KCONFIG_CONFIG := $(CURDIR)/.config
Gerd Hoffmanne5f43382014-12-03 15:14:57 +010015export LC_ALL := C
Gerd Hoffmann18140142013-09-20 13:29:01 +020016CROSS_PREFIX=
17ifneq ($(CROSS_PREFIX),)
18CC=$(CROSS_PREFIX)gcc
19endif
20AS=$(CROSS_PREFIX)as
21LD=$(CROSS_PREFIX)ld
22OBJCOPY=$(CROSS_PREFIX)objcopy
23OBJDUMP=$(CROSS_PREFIX)objdump
24STRIP=$(CROSS_PREFIX)strip
25PYTHON=python
26CPP=cpp
27IASL:=iasl
Roger Pau Monne6ad7b5b2014-04-16 09:14:16 +020028LD32BIT_FLAG:=-melf_i386
Gerd Hoffmann18140142013-09-20 13:29:01 +020029
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050030# Source files
Kevin O'Connorab482e02014-06-11 14:00:21 -040031SRCBOTH=misc.c stacks.c output.c string.c block.c cdrom.c disk.c mouse.c kbd.c \
32 system.c serial.c clock.c resume.c pnpbios.c vgahooks.c pcibios.c apm.c \
Kevin O'Connor4cd522e2013-11-29 12:14:34 -050033 hw/pci.c hw/timer.c hw/rtc.c hw/dma.c hw/pic.c hw/ps2port.c hw/serialio.c \
Kevin O'Connorde30dad2013-12-30 22:09:04 -050034 hw/usb.c hw/usb-uhci.c hw/usb-ohci.c hw/usb-ehci.c \
Kevin O'Connor9d19acd2013-09-02 21:38:57 -040035 hw/usb-hid.c hw/usb-msc.c hw/usb-uas.c \
Kevin O'Connor7c80bb82013-10-02 21:28:08 -040036 hw/blockcmd.c hw/floppy.c hw/ata.c hw/ramdisk.c \
Don Slutzf2645a82016-03-25 17:04:31 +010037 hw/lsi-scsi.c hw/esp-scsi.c hw/megasas.c hw/mpt-scsi.c
Kevin O'Connorab482e02014-06-11 14:00:21 -040038SRC16=$(SRCBOTH)
Kevin O'Connorc167e542015-09-29 09:40:46 -040039SRC32FLAT=$(SRCBOTH) post.c e820map.c malloc.c romfile.c x86.c optionroms.c \
Stefan Berger5aa2a752015-03-23 14:22:17 -040040 pmm.c font.c boot.c bootsplash.c jpeg.c bmp.c tcgbios.c sha1.c \
Kevin O'Connor4d8510c2016-02-03 01:28:20 -050041 hw/pcidevice.c hw/ahci.c hw/pvscsi.c hw/usb-xhci.c hw/usb-hub.c hw/sdcard.c \
Vladimir Serbinenko1b911d72015-05-18 19:07:16 +020042 fw/coreboot.c fw/lzmadecode.c fw/multiboot.c fw/csm.c fw/biostables.c \
Kevin O'Connor0673b782014-05-24 10:49:50 -040043 fw/paravirt.c fw/shadow.c fw/pciinit.c fw/smm.c fw/smp.c fw/mtrr.c fw/xen.c \
Stefan Bergerb310dfa2015-03-23 14:22:16 -040044 fw/acpi.c fw/mptable.c fw/pirtable.c fw/smbios.c fw/romfile_loader.c \
Gerd Hoffmann1d9e87b2015-06-26 09:44:00 +020045 hw/virtio-ring.c hw/virtio-pci.c hw/virtio-blk.c hw/virtio-scsi.c \
Stefan Bergerb310dfa2015-03-23 14:22:16 -040046 hw/tpm_drivers.c
Gerd Hoffmann31b8b4e2013-12-05 13:30:49 +010047SRC32SEG=string.c output.c pcibios.c apm.c stacks.c hw/pci.c hw/serialio.c
Kevin O'Connorccee6e82013-09-02 21:25:21 -040048DIRS=src src/hw src/fw vgasrc
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050049
Kevin O'Connor36feea92012-02-11 10:49:45 -050050# Default compiler flags
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050051cc-option=$(shell if test -z "`$(1) $(2) -S -o /dev/null -xc /dev/null 2>&1`" \
52 ; then echo "$(2)"; else echo "$(3)"; fi ;)
Kevin O'Connor786502d2008-02-27 10:41:41 -050053
Kevin O'Connora6c87742015-10-13 15:09:40 -040054EXTRAVERSION=
55
Kevin O'Connor5325e912013-03-08 19:23:18 -050056CPPFLAGS = -P -MD -MT $@
57
Kevin O'Connor5d369d82013-09-02 20:48:46 -040058COMMONCFLAGS := -I$(OUT) -Isrc -Os -MD -g \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050059 -Wall -Wno-strict-aliasing -Wold-style-definition \
60 $(call cc-option,$(CC),-Wtype-limits,) \
61 -m32 -march=i386 -mregparm=3 -mpreferred-stack-boundary=2 \
Kevin O'Connor799b20b2015-04-09 17:15:23 -040062 -minline-all-stringops -fomit-frame-pointer \
Kevin O'Connor9887ecb2011-12-18 10:51:19 -050063 -freg-struct-return -ffreestanding -fno-delete-null-pointer-checks \
Kevin O'Connore5749972014-06-07 15:55:00 -040064 -ffunction-sections -fdata-sections -fno-common -fno-merge-constants
Kevin O'Connor786502d2008-02-27 10:41:41 -050065COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
Kevin O'Connor99e33162016-10-25 12:09:41 -040066COMMONCFLAGS += $(call cc-option,$(CC),-fno-pie,)
Kevin O'Connor786502d2008-02-27 10:41:41 -050067COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
68COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
Magnus Granberge4d2b8c2015-09-11 17:38:40 -040069COMMONCFLAGS += $(call cc-option,$(CC),-fstack-check=no,)
David Woodhouse04b531a2014-06-03 17:28:22 +010070COMMA := ,
Kevin O'Connor786502d2008-02-27 10:41:41 -050071
Kevin O'Connor799b20b2015-04-09 17:15:23 -040072CFLAGS32FLAT := $(COMMONCFLAGS) -DMODE16=0 -DMODESEGMENT=0
Kevin O'Connor3ffa8cc2012-12-11 21:43:05 -050073CFLAGSSEG := $(COMMONCFLAGS) -DMODESEGMENT=1 -fno-defer-pop \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050074 $(call cc-option,$(CC),-fno-jump-tables,-DMANUAL_NO_JUMP_TABLE) \
75 $(call cc-option,$(CC),-fno-tree-switch-conversion,)
Kevin O'Connor799b20b2015-04-09 17:15:23 -040076CFLAGS32SEG := $(CFLAGSSEG) -DMODE16=0
77CFLAGS16 := $(CFLAGSSEG) -DMODE16=1 \
David Woodhouse04b531a2014-06-03 17:28:22 +010078 $(call cc-option,$(CC),-m16,-Wa$(COMMA)src/code16gcc.s) \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050079 $(call cc-option,$(CC),--param large-stack-frame=4,-fno-inline)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050080
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050081# Run with "make V=1" to see the actual compile commands
82ifdef V
83Q=
84else
85Q=@
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -050086MAKEFLAGS += --no-print-directory
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050087endif
88
Kevin O'Connora7fc8152012-01-15 01:52:27 -050089# Default targets
90-include $(KCONFIG_CONFIG)
91
Kevin O'Connor8744e152013-10-14 21:52:28 -040092target-y :=
93target-$(CONFIG_QEMU) += $(OUT)bios.bin
94target-$(CONFIG_CSM) += $(OUT)Csm16.bin
95target-$(CONFIG_COREBOOT) += $(OUT)bios.bin.elf
Kevin O'Connora7fc8152012-01-15 01:52:27 -050096target-$(CONFIG_BUILD_VGABIOS) += $(OUT)vgabios.bin
97
98all: $(target-y)
99
100# Make definitions
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -0500101.PHONY : all clean distclean FORCE
Michael S. Tsirkin3dcc2232012-08-30 12:59:31 +0300102.DELETE_ON_ERROR:
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500103
Kevin O'Connor36feea92012-02-11 10:49:45 -0500104
105################ Common build rules
Kevin O'Connor410680b2008-03-02 20:48:35 -0500106
Kevin O'Connor51d6ba32012-05-30 21:31:42 -0400107# Verify the build environment works.
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400108TESTGCC:=$(shell OUT="$(OUT)" CC="$(CC)" LD="$(LD)" IASL="$(IASL)" scripts/test-build.sh)
Kevin O'Connor03f630e2009-03-26 20:45:36 -0400109ifeq "$(TESTGCC)" "-1"
Kevin O'Connor51d6ba32012-05-30 21:31:42 -0400110$(error "Please upgrade the build environment")
Kevin O'Connor03f630e2009-03-26 20:45:36 -0400111endif
112
Kevin O'Connorfa2eacb2012-12-11 21:59:45 -0500113ifeq "$(TESTGCC)" "0"
114# Use -fwhole-program
115CFLAGSWHOLE=-fwhole-program -DWHOLE_PROGRAM
Kevin O'Connor231f7102009-01-25 16:11:27 -0500116endif
117
Kevin O'Connorfa2eacb2012-12-11 21:59:45 -0500118# Do a whole file compile by textually including all C code.
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400119define whole-compile
120@echo " Compiling whole program $3"
Kevin O'Connorec44fac2014-06-03 15:22:31 -0400121$(Q)printf '$(foreach i,$2,#include "$i"\n)' > $3.tmp.c
122$(Q)$(CC) -I. $1 $(CFLAGSWHOLE) -c $3.tmp.c -o $3
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400123endef
Kevin O'Connor410680b2008-03-02 20:48:35 -0500124
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400125%.strip.o: %.o
126 @echo " Stripping $@"
127 $(Q)$(STRIP) $< -o $@
Kevin O'Connor410680b2008-03-02 20:48:35 -0500128
Kevin O'Connor30853762009-01-17 18:49:20 -0500129$(OUT)%.s: %.c
Kevin O'Connor9e821222008-12-06 18:56:19 -0500130 @echo " Compiling to assembler $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500131 $(Q)$(CC) $(CFLAGS16) -S -c $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500132
Kevin O'Connorc39a2722012-12-11 22:40:16 -0500133$(OUT)%.o: %.c $(OUT)autoconf.h
134 @echo " Compile checking $@"
135 $(Q)$(CC) $(CFLAGS32FLAT) -c $< -o $@
136
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500137$(OUT)%.lds: %.lds.S
Kevin O'Connor9e821222008-12-06 18:56:19 -0500138 @echo " Precompiling $@"
Kevin O'Connor5325e912013-03-08 19:23:18 -0500139 $(Q)$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500140
Kevin O'Connor36feea92012-02-11 10:49:45 -0500141
142################ Main BIOS build rules
143
Kevin O'Connor713be892011-01-26 21:19:25 -0500144$(OUT)asm-offsets.s: $(OUT)autoconf.h
145
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400146$(OUT)asm-offsets.h: $(OUT)src/asm-offsets.s
Kevin O'Connor952974e2008-11-16 18:14:33 -0500147 @echo " Generating offset file $@"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400148 $(Q)./scripts/gen-offsets.sh $< $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500149
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400150$(OUT)ccode16.o: $(OUT)autoconf.h $(patsubst %.c, $(OUT)src/%.o,$(SRC16)) ; $(call whole-compile, $(CFLAGS16), $(addprefix src/, $(SRC16)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500151
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400152$(OUT)code32seg.o: $(OUT)autoconf.h $(patsubst %.c, $(OUT)src/%.o,$(SRC32SEG)) ; $(call whole-compile, $(CFLAGS32SEG), $(addprefix src/, $(SRC32SEG)),$@)
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500153
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400154$(OUT)ccode32flat.o: $(OUT)autoconf.h $(patsubst %.c, $(OUT)src/%.o,$(SRC32FLAT)) ; $(call whole-compile, $(CFLAGS32FLAT), $(addprefix src/, $(SRC32FLAT)),$@)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400155
Kevin O'Connor9d0d08c2014-05-08 18:24:17 -0400156$(OUT)romlayout.o: src/romlayout.S $(OUT)autoconf.h $(OUT)asm-offsets.h
Kevin O'Connor9e821222008-12-06 18:56:19 -0500157 @echo " Compiling (16bit) $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500158 $(Q)$(CC) $(CFLAGS16) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500159
Kevin O'Connora6c87742015-10-13 15:09:40 -0400160$(OUT)romlayout16.lds: $(OUT)ccode32flat.o $(OUT)code32seg.o $(OUT)ccode16.o $(OUT)romlayout.o src/version.c scripts/layoutrom.py scripts/buildversion.py
Kevin O'Connor980b45a2012-03-24 11:42:53 -0400161 @echo " Building ld scripts"
Kevin O'Connorefd70a52015-10-13 15:44:25 -0400162 $(Q)$(PYTHON) ./scripts/buildversion.py -e "$(EXTRAVERSION)" -t "$(CC);$(AS);$(LD);$(OBJCOPY);$(OBJDUMP);$(STRIP)" $(OUT)autoversion.h
Kevin O'Connora6c87742015-10-13 15:09:40 -0400163 $(Q)$(CC) $(CFLAGS32FLAT) -c src/version.c -o $(OUT)version.o
Roger Pau Monne6ad7b5b2014-04-16 09:14:16 +0200164 $(Q)$(LD) $(LD32BIT_FLAG) -r $(OUT)ccode32flat.o $(OUT)version.o -o $(OUT)code32flat.o
165 $(Q)$(LD) $(LD32BIT_FLAG) -r $(OUT)ccode16.o $(OUT)romlayout.o -o $(OUT)code16.o
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500166 $(Q)$(OBJDUMP) -thr $(OUT)code32flat.o > $(OUT)code32flat.o.objdump
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500167 $(Q)$(OBJDUMP) -thr $(OUT)code32seg.o > $(OUT)code32seg.o.objdump
Kevin O'Connore6caca82009-07-13 20:31:35 -0400168 $(Q)$(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400169 $(Q)$(PYTHON) ./scripts/layoutrom.py $(OUT)code16.o.objdump $(OUT)code32seg.o.objdump $(OUT)code32flat.o.objdump $(OUT)$(KCONFIG_AUTOHEADER) $(OUT)romlayout16.lds $(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds
Kevin O'Connor202024a2009-01-17 10:41:28 -0500170
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400171# These are actually built by scripts/layoutrom.py above, but by pulling them
Stefan Reinauer32aa9f32011-01-27 18:39:01 -0800172# into an extra rule we prevent make -j from spawning layoutrom.py 4 times.
Kevin O'Connor36feea92012-02-11 10:49:45 -0500173$(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds $(OUT)code32flat.o $(OUT)code16.o: $(OUT)romlayout16.lds
Kevin O'Connor202024a2009-01-17 10:41:28 -0500174
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400175$(OUT)rom16.o: $(OUT)code16.o $(OUT)romlayout16.lds
176 @echo " Linking $@"
177 $(Q)$(LD) -T $(OUT)romlayout16.lds $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500178
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500179$(OUT)rom32seg.o: $(OUT)code32seg.o $(OUT)romlayout32seg.lds
Kevin O'Connor114592f2009-09-28 21:32:08 -0400180 @echo " Linking $@"
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400181 $(Q)$(LD) -T $(OUT)romlayout32seg.lds $< -o $@
182
183$(OUT)rom.o: $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o $(OUT)romlayout32flat.lds
184 @echo " Linking $@"
Vladimir Serbinenko3752bf42015-05-19 18:21:19 +0200185 $(Q)$(LD) -N -T $(OUT)romlayout32flat.lds $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500186
Kevin O'Connor8744e152013-10-14 21:52:28 -0400187$(OUT)bios.bin.prep: $(OUT)rom.o scripts/checkrom.py
Kevin O'Connor9bcc5272008-07-05 21:08:56 -0400188 @echo " Prepping $@"
Kevin O'Connor8744e152013-10-14 21:52:28 -0400189 $(Q)rm -f $(OUT)bios.bin $(OUT)Csm16.bin $(OUT)bios.bin.elf
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400190 $(Q)$(OBJDUMP) -thr $< > $<.objdump
191 $(Q)$(OBJCOPY) -O binary $< $(OUT)bios.bin.raw
Sander Eikelenboom2a533852014-01-09 20:18:43 +0100192 $(Q)$(PYTHON) ./scripts/checkrom.py $<.objdump $(CONFIG_ROM_SIZE) $(OUT)bios.bin.raw $(OUT)bios.bin.prep
Kevin O'Connor8744e152013-10-14 21:52:28 -0400193
194$(OUT)bios.bin: $(OUT)bios.bin.prep
195 @echo " Creating $@"
196 $(Q)cp $< $@
197
198$(OUT)Csm16.bin: $(OUT)bios.bin.prep
199 @echo " Creating $@"
200 $(Q)cp $< $@
201
202$(OUT)bios.bin.elf: $(OUT)rom.o $(OUT)bios.bin.prep
203 @echo " Creating $@"
Kevin O'Connor3a337b22009-11-03 19:50:52 -0500204 $(Q)$(STRIP) -R .comment $< -o $(OUT)bios.bin.elf
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400205
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500206
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400207################ VGA build rules
208
209# VGA src files
Kevin O'Connor4cd522e2013-11-29 12:14:34 -0500210SRCVGA=src/output.c src/string.c src/hw/pci.c src/hw/serialio.c \
Kevin O'Connor27129d02016-08-04 16:25:33 -0400211 vgasrc/vgainit.c vgasrc/vgabios.c vgasrc/vgafb.c vgasrc/swcursor.c \
Kevin O'Connordab0a742013-12-03 11:50:49 -0500212 vgasrc/vgafonts.c vgasrc/vbe.c \
Kevin O'Connor4ad2d102012-01-14 23:20:05 -0500213 vgasrc/stdvga.c vgasrc/stdvgamodes.c vgasrc/stdvgaio.c \
Kevin O'Connor7c790292014-02-11 15:34:58 -0500214 vgasrc/clext.c vgasrc/bochsvga.c vgasrc/geodevga.c \
215 src/fw/coreboot.c vgasrc/cbvga.c
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400216
Kevin O'Connor799b20b2015-04-09 17:15:23 -0400217ifeq "$(CONFIG_VGA_FIXUP_ASM)" "y"
218$(OUT)vgaccode16.raw.s: $(OUT)autoconf.h $(patsubst %.c, $(OUT)%.o,$(SRCVGA)) ; $(call whole-compile, $(filter-out -fomit-frame-pointer,$(CFLAGS16)) -fno-omit-frame-pointer -S -Isrc, $(SRCVGA),$@)
Kevin O'Connor35f42dc2012-03-05 17:45:55 -0500219
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400220$(OUT)vgaccode16.o: $(OUT)vgaccode16.raw.s scripts/vgafixup.py
Kevin O'Connor35f42dc2012-03-05 17:45:55 -0500221 @echo " Fixup VGA rom assembler"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400222 $(Q)$(PYTHON) ./scripts/vgafixup.py $< $(OUT)vgaccode16.s
Kevin O'Connor35f42dc2012-03-05 17:45:55 -0500223 $(Q)$(AS) --32 src/code16gcc.s $(OUT)vgaccode16.s -o $@
Kevin O'Connor799b20b2015-04-09 17:15:23 -0400224else
225$(OUT)vgaccode16.o: $(OUT)autoconf.h $(patsubst %.c, $(OUT)%.o,$(SRCVGA)) ; $(call whole-compile, $(CFLAGS16) -Isrc, $(SRCVGA),$@)
226endif
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400227
Kevin O'Connor4a8b58c2013-11-30 19:16:15 -0500228$(OUT)vgaentry.o: vgasrc/vgaentry.S $(OUT)autoconf.h $(OUT)asm-offsets.h
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400229 @echo " Compiling (16bit) $@"
Kevin O'Connor799b20b2015-04-09 17:15:23 -0400230 $(Q)$(CC) $(CFLAGS16) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400231
Kevin O'Connora6c87742015-10-13 15:09:40 -0400232$(OUT)vgarom.o: $(OUT)vgaccode16.o $(OUT)vgaentry.o $(OUT)vgasrc/vgalayout.lds vgasrc/vgaversion.c scripts/buildversion.py
Kevin O'Connor980b45a2012-03-24 11:42:53 -0400233 @echo " Linking $@"
Kevin O'Connorefd70a52015-10-13 15:44:25 -0400234 $(Q)$(PYTHON) ./scripts/buildversion.py -e "$(EXTRAVERSION)" -t "$(CC);$(AS);$(LD);$(OBJCOPY);$(OBJDUMP);$(STRIP)" $(OUT)autovgaversion.h
Kevin O'Connora6c87742015-10-13 15:09:40 -0400235 $(Q)$(CC) $(CFLAGS16) -c vgasrc/vgaversion.c -o $(OUT)vgaversion.o
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400236 $(Q)$(LD) --gc-sections -T $(OUT)vgasrc/vgalayout.lds $(OUT)vgaccode16.o $(OUT)vgaentry.o $(OUT)vgaversion.o -o $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400237
238$(OUT)vgabios.bin.raw: $(OUT)vgarom.o
239 @echo " Extracting binary $@"
240 $(Q)$(OBJCOPY) -O binary $< $@
241
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400242$(OUT)vgabios.bin: $(OUT)vgabios.bin.raw scripts/buildrom.py
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400243 @echo " Finalizing rom $@"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400244 $(Q)$(PYTHON) ./scripts/buildrom.py $< $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400245
Kevin O'Connor36feea92012-02-11 10:49:45 -0500246
247################ DSDT build rules
248
Kevin O'Connor51755c32012-08-29 21:27:37 -0400249iasl-option=$(shell if test -z "`$(1) $(2) 2>&1 > /dev/null`" \
Michael S. Tsirkin4da07252012-08-02 21:57:20 +0300250 ; then echo "$(2)"; else echo "$(3)"; fi ;)
251
Kevin O'Connor4373afa2015-11-17 18:45:41 -0500252%.hex: %.dsl ./scripts/acpi_extract_preprocess.py ./scripts/acpi_extract.py
Kevin O'Connor51d6ba32012-05-30 21:31:42 -0400253 @echo " Compiling IASL $@"
Kevin O'Connor5325e912013-03-08 19:23:18 -0500254 $(Q)$(CPP) $(CPPFLAGS) $< -o $(OUT)$*.dsl.i.orig
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400255 $(Q)$(PYTHON) ./scripts/acpi_extract_preprocess.py $(OUT)$*.dsl.i.orig > $(OUT)$*.dsl.i
Michael S. Tsirkin4da07252012-08-02 21:57:20 +0300256 $(Q)$(IASL) $(call iasl-option,$(IASL),-Pn,) -vs -l -tc -p $(OUT)$* $(OUT)$*.dsl.i
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400257 $(Q)$(PYTHON) ./scripts/acpi_extract.py $(OUT)$*.lst > $(OUT)$*.off
Michael S. Tsirkin2e55b032011-10-26 23:28:02 +0200258 $(Q)cat $(OUT)$*.off > $@
Isaku Yamahata12cbb432010-06-07 17:19:27 +0900259
Kevin O'Connor4373afa2015-11-17 18:45:41 -0500260iasl: src/fw/acpi-dsdt.hex src/fw/ssdt-proc.hex src/fw/ssdt-pcihp.hex src/fw/ssdt-misc.hex
Kevin O'Connord91f9d42009-10-08 21:57:15 -0400261
Kevin O'Connor36feea92012-02-11 10:49:45 -0500262################ Kconfig rules
263
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500264define do-kconfig
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400265$(Q)mkdir -p $(OUT)/scripts/kconfig/lxdialog
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500266$(Q)mkdir -p $(OUT)/include/config
Gerd Hoffmannd3c971e2013-09-25 09:40:50 +0200267$(Q)mkdir -p $(addprefix $(OUT), $(DIRS))
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400268$(Q)$(MAKE) -C $(OUT) -f $(CURDIR)/scripts/kconfig/Makefile srctree=$(CURDIR) src=scripts/kconfig obj=scripts/kconfig Q=$(Q) Kconfig=$(CURDIR)/src/Kconfig $1
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500269endef
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -0500270
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500271$(OUT)autoconf.h : $(KCONFIG_CONFIG) ; $(call do-kconfig, silentoldconfig)
Kevin O'Connor95b3d322013-12-23 13:44:59 -0500272$(KCONFIG_CONFIG): src/Kconfig vgasrc/Kconfig ; $(call do-kconfig, olddefconfig)
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500273%onfig: ; $(call do-kconfig, $@)
274help: ; $(call do-kconfig, $@)
Sebastian Herbsztaba52eb2011-11-24 17:20:36 +0100275
Kevin O'Connor36feea92012-02-11 10:49:45 -0500276
277################ Generic rules
278
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500279clean:
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500280 $(Q)rm -rf $(OUT)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500281
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -0500282distclean: clean
283 $(Q)rm -f .config .config.old
284
Kevin O'Connor75411ce2016-10-21 12:05:23 -0400285-include $(OUT)*.d $(patsubst %,$(OUT)%/*.d,$(DIRS))