blob: 3984d35f8ffc8b49597ff66dd62f984a6e265467 [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
10# Source files
Kevin O'Connorfa9c66a2013-09-14 19:10:40 -040011SRCBOTH=misc.c stacks.c output.c string.c x86.c block.c cdrom.c mouse.c kbd.c \
Kevin O'Connor9d19acd2013-09-02 21:38:57 -040012 serial.c clock.c resume.c pnpbios.c vgahooks.c pcibios.c apm.c \
13 fw/smp.c \
14 hw/pci.c hw/timer.c hw/pic.c hw/ps2port.c \
Gerd Hoffmanne144bb72013-06-03 16:30:18 +020015 hw/usb.c hw/usb-uhci.c hw/usb-ohci.c hw/usb-ehci.c hw/usb-xhci.c \
Kevin O'Connor9d19acd2013-09-02 21:38:57 -040016 hw/usb-hid.c hw/usb-msc.c hw/usb-uas.c \
17 hw/blockcmd.c hw/floppy.c hw/ata.c hw/ahci.c hw/ramdisk.c \
18 hw/virtio-ring.c hw/virtio-pci.c hw/virtio-blk.c hw/virtio-scsi.c \
19 hw/lsi-scsi.c hw/esp-scsi.c hw/megasas.c
Kevin O'Connor244caf82010-09-15 21:48:16 -040020SRC16=$(SRCBOTH) system.c disk.c font.c
Kevin O'Connor9dea5902013-09-14 20:23:54 -040021SRC32FLAT=$(SRCBOTH) post.c memmap.c malloc.c pmm.c romfile.c optionroms.c \
Kevin O'Connor9d19acd2013-09-02 21:38:57 -040022 boot.c bootsplash.c jpeg.c bmp.c \
23 hw/usb-hub.c \
24 fw/coreboot.c fw/lzmadecode.c fw/csm.c fw/biostables.c \
25 fw/paravirt.c fw/shadow.c fw/pciinit.c fw/smm.c fw/mtrr.c fw/xen.c \
26 fw/acpi.c fw/mptable.c fw/pirtable.c fw/smbios.c
Kevin O'Connorfa9c66a2013-09-14 19:10:40 -040027SRC32SEG=string.c output.c pcibios.c apm.c stacks.c hw/pci.c
Kevin O'Connorccee6e82013-09-02 21:25:21 -040028DIRS=src src/hw src/fw vgasrc
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050029
Kevin O'Connor36feea92012-02-11 10:49:45 -050030# Default compiler flags
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050031cc-option=$(shell if test -z "`$(1) $(2) -S -o /dev/null -xc /dev/null 2>&1`" \
32 ; then echo "$(2)"; else echo "$(3)"; fi ;)
Kevin O'Connor786502d2008-02-27 10:41:41 -050033
Kevin O'Connor5325e912013-03-08 19:23:18 -050034CPPFLAGS = -P -MD -MT $@
35
Kevin O'Connor5d369d82013-09-02 20:48:46 -040036COMMONCFLAGS := -I$(OUT) -Isrc -Os -MD -g \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050037 -Wall -Wno-strict-aliasing -Wold-style-definition \
38 $(call cc-option,$(CC),-Wtype-limits,) \
39 -m32 -march=i386 -mregparm=3 -mpreferred-stack-boundary=2 \
Kevin O'Connor42902412012-03-05 17:39:32 -050040 -minline-all-stringops \
Kevin O'Connor9887ecb2011-12-18 10:51:19 -050041 -freg-struct-return -ffreestanding -fno-delete-null-pointer-checks \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050042 -ffunction-sections -fdata-sections -fno-common
Kevin O'Connor786502d2008-02-27 10:41:41 -050043COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
44COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
45COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
46
Kevin O'Connor3ffa8cc2012-12-11 21:43:05 -050047CFLAGS32FLAT := $(COMMONCFLAGS) -DMODE16=0 -DMODESEGMENT=0 -fomit-frame-pointer
48CFLAGSSEG := $(COMMONCFLAGS) -DMODESEGMENT=1 -fno-defer-pop \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050049 $(call cc-option,$(CC),-fno-jump-tables,-DMANUAL_NO_JUMP_TABLE) \
50 $(call cc-option,$(CC),-fno-tree-switch-conversion,)
Kevin O'Connor3ffa8cc2012-12-11 21:43:05 -050051CFLAGS32SEG := $(CFLAGSSEG) -DMODE16=0 -fomit-frame-pointer
52CFLAGS16INC := $(CFLAGSSEG) -DMODE16=1 -Wa,src/code16gcc.s \
Kevin O'Connorbd515ac2011-12-18 10:48:44 -050053 $(call cc-option,$(CC),--param large-stack-frame=4,-fno-inline)
Kevin O'Connor3ffa8cc2012-12-11 21:43:05 -050054CFLAGS16 := $(CFLAGS16INC) -fomit-frame-pointer
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050055
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050056# Run with "make V=1" to see the actual compile commands
57ifdef V
58Q=
59else
60Q=@
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -050061MAKEFLAGS += --no-print-directory
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050062endif
63
Kevin O'Connora7fc8152012-01-15 01:52:27 -050064# Common command definitions
65export HOSTCC := $(CC)
66export CONFIG_SHELL := sh
67export KCONFIG_AUTOHEADER := autoconf.h
68export KCONFIG_CONFIG := $(CURDIR)/.config
Kevin O'Connor35f42dc2012-03-05 17:45:55 -050069AS=as
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050070OBJCOPY=objcopy
Kevin O'Connor202024a2009-01-17 10:41:28 -050071OBJDUMP=objdump
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050072STRIP=strip
Kevin O'Connor97f1ffc2012-02-08 20:21:29 -050073PYTHON=python
Kevin O'Connor5325e912013-03-08 19:23:18 -050074CPP=cpp
Marc Jones74f96122012-04-29 11:20:53 -060075IASL:=iasl
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050076
Kevin O'Connora7fc8152012-01-15 01:52:27 -050077# Default targets
78-include $(KCONFIG_CONFIG)
79
Kevin O'Connor3cb0f502013-09-02 19:58:48 -040080target-y = $(OUT) $(addprefix $(OUT), $(DIRS)) $(OUT)bios.bin
Kevin O'Connora7fc8152012-01-15 01:52:27 -050081target-$(CONFIG_BUILD_VGABIOS) += $(OUT)vgabios.bin
82
83all: $(target-y)
84
85# Make definitions
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -050086.PHONY : all clean distclean FORCE
Michael S. Tsirkin3dcc2232012-08-30 12:59:31 +030087.DELETE_ON_ERROR:
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050088
Kevin O'Connor36feea92012-02-11 10:49:45 -050089
90################ Common build rules
Kevin O'Connor410680b2008-03-02 20:48:35 -050091
Kevin O'Connor51d6ba32012-05-30 21:31:42 -040092# Verify the build environment works.
Kevin O'Connorb942ce02013-08-17 10:13:14 -040093TESTGCC:=$(shell OUT="$(OUT)" CC="$(CC)" LD="$(LD)" IASL="$(IASL)" scripts/test-build.sh)
Kevin O'Connor03f630e2009-03-26 20:45:36 -040094ifeq "$(TESTGCC)" "-1"
Kevin O'Connor51d6ba32012-05-30 21:31:42 -040095$(error "Please upgrade the build environment")
Kevin O'Connor03f630e2009-03-26 20:45:36 -040096endif
97
Kevin O'Connorfa2eacb2012-12-11 21:59:45 -050098ifeq "$(TESTGCC)" "0"
99# Use -fwhole-program
100CFLAGSWHOLE=-fwhole-program -DWHOLE_PROGRAM
Kevin O'Connor231f7102009-01-25 16:11:27 -0500101endif
102
Kevin O'Connorfa2eacb2012-12-11 21:59:45 -0500103# Do a whole file compile by textually including all C code.
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400104define whole-compile
105@echo " Compiling whole program $3"
Kevin O'Connor23219122013-02-17 10:56:10 -0500106$(Q)printf '$(foreach i,$2,#include "$(CURDIR)/$i"\n)' > $3.tmp.c
Kevin O'Connorfa2eacb2012-12-11 21:59:45 -0500107$(Q)$(CC) $1 $(CFLAGSWHOLE) -c $3.tmp.c -o $3
Kevin O'Connor0942e7f2009-06-15 22:27:01 -0400108endef
Kevin O'Connor410680b2008-03-02 20:48:35 -0500109
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400110%.strip.o: %.o
111 @echo " Stripping $@"
112 $(Q)$(STRIP) $< -o $@
Kevin O'Connor410680b2008-03-02 20:48:35 -0500113
Kevin O'Connor30853762009-01-17 18:49:20 -0500114$(OUT)%.s: %.c
Kevin O'Connor9e821222008-12-06 18:56:19 -0500115 @echo " Compiling to assembler $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500116 $(Q)$(CC) $(CFLAGS16) -S -c $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500117
Kevin O'Connorc39a2722012-12-11 22:40:16 -0500118$(OUT)%.o: %.c $(OUT)autoconf.h
119 @echo " Compile checking $@"
120 $(Q)$(CC) $(CFLAGS32FLAT) -c $< -o $@
121
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500122$(OUT)%.lds: %.lds.S
Kevin O'Connor9e821222008-12-06 18:56:19 -0500123 @echo " Precompiling $@"
Kevin O'Connor5325e912013-03-08 19:23:18 -0500124 $(Q)$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500125
Kevin O'Connor36feea92012-02-11 10:49:45 -0500126
127################ Main BIOS build rules
128
Kevin O'Connor713be892011-01-26 21:19:25 -0500129$(OUT)asm-offsets.s: $(OUT)autoconf.h
130
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400131$(OUT)asm-offsets.h: $(OUT)src/asm-offsets.s
Kevin O'Connor952974e2008-11-16 18:14:33 -0500132 @echo " Generating offset file $@"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400133 $(Q)./scripts/gen-offsets.sh $< $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500134
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400135$(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 -0500136
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400137$(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 -0500138
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400139$(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 -0400140
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400141$(OUT)romlayout.o: src/romlayout.S $(OUT)asm-offsets.h
Kevin O'Connor9e821222008-12-06 18:56:19 -0500142 @echo " Compiling (16bit) $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500143 $(Q)$(CC) $(CFLAGS16) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500144
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400145$(OUT)romlayout16.lds: $(OUT)ccode32flat.o $(OUT)code32seg.o $(OUT)ccode16.o $(OUT)romlayout.o scripts/layoutrom.py scripts/buildversion.sh
Kevin O'Connor980b45a2012-03-24 11:42:53 -0400146 @echo " Building ld scripts"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400147 $(Q)./scripts/buildversion.sh $(OUT)version.c
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500148 $(Q)$(CC) $(CFLAGS32FLAT) -c $(OUT)version.c -o $(OUT)version.o
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500149 $(Q)$(LD) -melf_i386 -r $(OUT)ccode32flat.o $(OUT)version.o -o $(OUT)code32flat.o
Kevin O'Connor36feea92012-02-11 10:49:45 -0500150 $(Q)$(LD) -melf_i386 -r $(OUT)ccode16.o $(OUT)romlayout.o -o $(OUT)code16.o
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500151 $(Q)$(OBJDUMP) -thr $(OUT)code32flat.o > $(OUT)code32flat.o.objdump
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500152 $(Q)$(OBJDUMP) -thr $(OUT)code32seg.o > $(OUT)code32seg.o.objdump
Kevin O'Connore6caca82009-07-13 20:31:35 -0400153 $(Q)$(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400154 $(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 -0500155
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400156# These are actually built by scripts/layoutrom.py above, but by pulling them
Stefan Reinauer32aa9f32011-01-27 18:39:01 -0800157# into an extra rule we prevent make -j from spawning layoutrom.py 4 times.
Kevin O'Connor36feea92012-02-11 10:49:45 -0500158$(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds $(OUT)code32flat.o $(OUT)code16.o: $(OUT)romlayout16.lds
Kevin O'Connor202024a2009-01-17 10:41:28 -0500159
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400160$(OUT)rom16.o: $(OUT)code16.o $(OUT)romlayout16.lds
161 @echo " Linking $@"
162 $(Q)$(LD) -T $(OUT)romlayout16.lds $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500163
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500164$(OUT)rom32seg.o: $(OUT)code32seg.o $(OUT)romlayout32seg.lds
Kevin O'Connor114592f2009-09-28 21:32:08 -0400165 @echo " Linking $@"
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400166 $(Q)$(LD) -T $(OUT)romlayout32seg.lds $< -o $@
167
168$(OUT)rom.o: $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o $(OUT)romlayout32flat.lds
169 @echo " Linking $@"
170 $(Q)$(LD) -T $(OUT)romlayout32flat.lds $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500171
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400172$(OUT)bios.bin.elf $(OUT)bios.bin: $(OUT)rom.o scripts/checkrom.py
Kevin O'Connor9bcc5272008-07-05 21:08:56 -0400173 @echo " Prepping $@"
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400174 $(Q)$(OBJDUMP) -thr $< > $<.objdump
175 $(Q)$(OBJCOPY) -O binary $< $(OUT)bios.bin.raw
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400176 $(Q)$(PYTHON) ./scripts/checkrom.py $<.objdump $(OUT)bios.bin.raw $(OUT)bios.bin
Kevin O'Connor3a337b22009-11-03 19:50:52 -0500177 $(Q)$(STRIP) -R .comment $< -o $(OUT)bios.bin.elf
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400178
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500179
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400180################ VGA build rules
181
182# VGA src files
Kevin O'Connorfa9c66a2013-09-14 19:10:40 -0400183SRCVGA=src/output.c src/string.c src/hw/pci.c \
Kevin O'Connor3471fdb2012-01-14 19:02:43 -0500184 vgasrc/vgabios.c vgasrc/vgafb.c vgasrc/vgafonts.c vgasrc/vbe.c \
Kevin O'Connor4ad2d102012-01-14 23:20:05 -0500185 vgasrc/stdvga.c vgasrc/stdvgamodes.c vgasrc/stdvgaio.c \
Kevin O'Connor3471fdb2012-01-14 19:02:43 -0500186 vgasrc/clext.c vgasrc/bochsvga.c vgasrc/geodevga.c
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400187
Kevin O'Connor36feea92012-02-11 10:49:45 -0500188CFLAGS16VGA = $(CFLAGS16INC) -Isrc
Kevin O'Connor9887ecb2011-12-18 10:51:19 -0500189
Kevin O'Connorcdb98202013-09-15 01:17:06 -0400190$(OUT)vgaccode16.raw.s: $(OUT)autoconf.h $(patsubst %.c, $(OUT)%.o,$(SRCVGA)) ; $(call whole-compile, $(CFLAGS16VGA) -S, $(SRCVGA),$@)
Kevin O'Connor35f42dc2012-03-05 17:45:55 -0500191
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400192$(OUT)vgaccode16.o: $(OUT)vgaccode16.raw.s scripts/vgafixup.py
Kevin O'Connor35f42dc2012-03-05 17:45:55 -0500193 @echo " Fixup VGA rom assembler"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400194 $(Q)$(PYTHON) ./scripts/vgafixup.py $< $(OUT)vgaccode16.s
Kevin O'Connor35f42dc2012-03-05 17:45:55 -0500195 $(Q)$(AS) --32 src/code16gcc.s $(OUT)vgaccode16.s -o $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400196
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400197$(OUT)vgaentry.o: vgasrc/vgaentry.S $(OUT)autoconf.h
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400198 @echo " Compiling (16bit) $@"
Kevin O'Connor36feea92012-02-11 10:49:45 -0500199 $(Q)$(CC) $(CFLAGS16VGA) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400200
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400201$(OUT)vgarom.o: $(OUT)vgaccode16.o $(OUT)vgaentry.o $(OUT)vgasrc/vgalayout.lds scripts/buildversion.sh
Kevin O'Connor980b45a2012-03-24 11:42:53 -0400202 @echo " Linking $@"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400203 $(Q)./scripts/buildversion.sh $(OUT)vgaversion.c VAR16
Kevin O'Connor9d840882012-02-11 11:02:03 -0500204 $(Q)$(CC) $(CFLAGS16VGA) -c $(OUT)vgaversion.c -o $(OUT)vgaversion.o
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400205 $(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 -0400206
207$(OUT)vgabios.bin.raw: $(OUT)vgarom.o
208 @echo " Extracting binary $@"
209 $(Q)$(OBJCOPY) -O binary $< $@
210
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400211$(OUT)vgabios.bin: $(OUT)vgabios.bin.raw scripts/buildrom.py
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400212 @echo " Finalizing rom $@"
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400213 $(Q)$(PYTHON) ./scripts/buildrom.py $< $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400214
Kevin O'Connor36feea92012-02-11 10:49:45 -0500215
216################ DSDT build rules
217
Kevin O'Connor51755c32012-08-29 21:27:37 -0400218iasl-option=$(shell if test -z "`$(1) $(2) 2>&1 > /dev/null`" \
Michael S. Tsirkin4da07252012-08-02 21:57:20 +0300219 ; then echo "$(2)"; else echo "$(3)"; fi ;)
220
Kevin O'Connorccee6e82013-09-02 21:25:21 -0400221$(OUT)%.hex: %.dsl ./scripts/acpi_extract_preprocess.py ./scripts/acpi_extract.py
Kevin O'Connor51d6ba32012-05-30 21:31:42 -0400222 @echo " Compiling IASL $@"
Kevin O'Connor5325e912013-03-08 19:23:18 -0500223 $(Q)$(CPP) $(CPPFLAGS) $< -o $(OUT)$*.dsl.i.orig
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400224 $(Q)$(PYTHON) ./scripts/acpi_extract_preprocess.py $(OUT)$*.dsl.i.orig > $(OUT)$*.dsl.i
Michael S. Tsirkin4da07252012-08-02 21:57:20 +0300225 $(Q)$(IASL) $(call iasl-option,$(IASL),-Pn,) -vs -l -tc -p $(OUT)$* $(OUT)$*.dsl.i
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400226 $(Q)$(PYTHON) ./scripts/acpi_extract.py $(OUT)$*.lst > $(OUT)$*.off
Michael S. Tsirkin2e55b032011-10-26 23:28:02 +0200227 $(Q)cat $(OUT)$*.off > $@
Isaku Yamahata12cbb432010-06-07 17:19:27 +0900228
Kevin O'Connorccee6e82013-09-02 21:25:21 -0400229$(OUT)src/fw/acpi.o: $(OUT)src/fw/acpi-dsdt.hex $(OUT)src/fw/ssdt-proc.hex $(OUT)src/fw/ssdt-pcihp.hex $(OUT)src/fw/ssdt-misc.hex $(OUT)src/fw/q35-acpi-dsdt.hex
Kevin O'Connord91f9d42009-10-08 21:57:15 -0400230
Kevin O'Connor36feea92012-02-11 10:49:45 -0500231################ Kconfig rules
232
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500233define do-kconfig
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400234$(Q)mkdir -p $(OUT)/scripts/kconfig/lxdialog
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500235$(Q)mkdir -p $(OUT)/include/config
Kevin O'Connorb942ce02013-08-17 10:13:14 -0400236$(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 -0500237endef
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -0500238
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500239$(OUT)autoconf.h : $(KCONFIG_CONFIG) ; $(call do-kconfig, silentoldconfig)
Kevin O'Connor5325e912013-03-08 19:23:18 -0500240$(KCONFIG_CONFIG): src/Kconfig vgasrc/Kconfig ; $(call do-kconfig, defconfig)
Kevin O'Connora7fc8152012-01-15 01:52:27 -0500241%onfig: ; $(call do-kconfig, $@)
242help: ; $(call do-kconfig, $@)
Sebastian Herbsztaba52eb2011-11-24 17:20:36 +0100243
Kevin O'Connor36feea92012-02-11 10:49:45 -0500244
245################ Generic rules
246
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500247clean:
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500248 $(Q)rm -rf $(OUT)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500249
Kevin O'Connor0da7bfd2011-01-26 21:14:59 -0500250distclean: clean
251 $(Q)rm -f .config .config.old
252
Kevin O'Connor3cb0f502013-09-02 19:58:48 -0400253$(OUT) $(addprefix $(OUT), $(DIRS)):
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500254 $(Q)mkdir $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500255
Kevin O'Connor836ec5c2013-09-14 22:05:58 -0400256-include $(patsubst %,$(OUT)%/*.d,$(DIRS))