Kevin O'Connor | 1445843 | 2009-05-23 18:21:18 -0400 | [diff] [blame] | 1 | # SeaBIOS build system |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 2 | # |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 3 | # Copyright (C) 2008-2012 Kevin O'Connor <kevin@koconnor.net> |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 4 | # |
Kevin O'Connor | b1b7c2a | 2009-01-15 20:52:58 -0500 | [diff] [blame] | 5 | # This file may be distributed under the terms of the GNU LGPLv3 license. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 6 | |
| 7 | # Output directory |
| 8 | OUT=out/ |
| 9 | |
Gerd Hoffmann | 1814014 | 2013-09-20 13:29:01 +0200 | [diff] [blame] | 10 | # Common command definitions |
| 11 | export HOSTCC := $(CC) |
| 12 | export CONFIG_SHELL := sh |
| 13 | export KCONFIG_AUTOHEADER := autoconf.h |
| 14 | export KCONFIG_CONFIG := $(CURDIR)/.config |
| 15 | CROSS_PREFIX= |
| 16 | ifneq ($(CROSS_PREFIX),) |
| 17 | CC=$(CROSS_PREFIX)gcc |
| 18 | endif |
| 19 | AS=$(CROSS_PREFIX)as |
| 20 | LD=$(CROSS_PREFIX)ld |
| 21 | OBJCOPY=$(CROSS_PREFIX)objcopy |
| 22 | OBJDUMP=$(CROSS_PREFIX)objdump |
| 23 | STRIP=$(CROSS_PREFIX)strip |
| 24 | PYTHON=python |
| 25 | CPP=cpp |
| 26 | IASL:=iasl |
| 27 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 28 | # Source files |
Kevin O'Connor | fa9c66a | 2013-09-14 19:10:40 -0400 | [diff] [blame] | 29 | SRCBOTH=misc.c stacks.c output.c string.c x86.c block.c cdrom.c mouse.c kbd.c \ |
Kevin O'Connor | 9d19acd | 2013-09-02 21:38:57 -0400 | [diff] [blame] | 30 | serial.c clock.c resume.c pnpbios.c vgahooks.c pcibios.c apm.c \ |
| 31 | fw/smp.c \ |
Kevin O'Connor | 4cd522e | 2013-11-29 12:14:34 -0500 | [diff] [blame] | 32 | hw/pci.c hw/timer.c hw/rtc.c hw/dma.c hw/pic.c hw/ps2port.c hw/serialio.c \ |
Kevin O'Connor | de30dad | 2013-12-30 22:09:04 -0500 | [diff] [blame] | 33 | hw/usb.c hw/usb-uhci.c hw/usb-ohci.c hw/usb-ehci.c \ |
Kevin O'Connor | 9d19acd | 2013-09-02 21:38:57 -0400 | [diff] [blame] | 34 | hw/usb-hid.c hw/usb-msc.c hw/usb-uas.c \ |
Kevin O'Connor | 7c80bb8 | 2013-10-02 21:28:08 -0400 | [diff] [blame] | 35 | hw/blockcmd.c hw/floppy.c hw/ata.c hw/ramdisk.c \ |
Kevin O'Connor | 9d19acd | 2013-09-02 21:38:57 -0400 | [diff] [blame] | 36 | hw/virtio-ring.c hw/virtio-pci.c hw/virtio-blk.c hw/virtio-scsi.c \ |
Kevin O'Connor | 4b400a1 | 2013-12-24 00:46:15 -0500 | [diff] [blame] | 37 | hw/lsi-scsi.c hw/esp-scsi.c hw/megasas.c |
Kevin O'Connor | 244caf8 | 2010-09-15 21:48:16 -0400 | [diff] [blame] | 38 | SRC16=$(SRCBOTH) system.c disk.c font.c |
Kevin O'Connor | 9dea590 | 2013-09-14 20:23:54 -0400 | [diff] [blame] | 39 | SRC32FLAT=$(SRCBOTH) post.c memmap.c malloc.c pmm.c romfile.c optionroms.c \ |
Kevin O'Connor | 9d19acd | 2013-09-02 21:38:57 -0400 | [diff] [blame] | 40 | boot.c bootsplash.c jpeg.c bmp.c \ |
Kevin O'Connor | de30dad | 2013-12-30 22:09:04 -0500 | [diff] [blame] | 41 | hw/ahci.c hw/pvscsi.c hw/usb-xhci.c hw/usb-hub.c \ |
Kevin O'Connor | 9d19acd | 2013-09-02 21:38:57 -0400 | [diff] [blame] | 42 | fw/coreboot.c fw/lzmadecode.c fw/csm.c fw/biostables.c \ |
| 43 | fw/paravirt.c fw/shadow.c fw/pciinit.c fw/smm.c fw/mtrr.c fw/xen.c \ |
Michael S. Tsirkin | 4a02768 | 2013-10-03 16:30:37 +0300 | [diff] [blame] | 44 | fw/acpi.c fw/mptable.c fw/pirtable.c fw/smbios.c fw/romfile_loader.c |
Gerd Hoffmann | 31b8b4e | 2013-12-05 13:30:49 +0100 | [diff] [blame] | 45 | SRC32SEG=string.c output.c pcibios.c apm.c stacks.c hw/pci.c hw/serialio.c |
Kevin O'Connor | ccee6e8 | 2013-09-02 21:25:21 -0400 | [diff] [blame] | 46 | DIRS=src src/hw src/fw vgasrc |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 47 | |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 48 | # Default compiler flags |
Kevin O'Connor | bd515ac | 2011-12-18 10:48:44 -0500 | [diff] [blame] | 49 | cc-option=$(shell if test -z "`$(1) $(2) -S -o /dev/null -xc /dev/null 2>&1`" \ |
| 50 | ; then echo "$(2)"; else echo "$(3)"; fi ;) |
Kevin O'Connor | 786502d | 2008-02-27 10:41:41 -0500 | [diff] [blame] | 51 | |
Kevin O'Connor | 5325e91 | 2013-03-08 19:23:18 -0500 | [diff] [blame] | 52 | CPPFLAGS = -P -MD -MT $@ |
| 53 | |
Kevin O'Connor | 5d369d8 | 2013-09-02 20:48:46 -0400 | [diff] [blame] | 54 | COMMONCFLAGS := -I$(OUT) -Isrc -Os -MD -g \ |
Kevin O'Connor | bd515ac | 2011-12-18 10:48:44 -0500 | [diff] [blame] | 55 | -Wall -Wno-strict-aliasing -Wold-style-definition \ |
| 56 | $(call cc-option,$(CC),-Wtype-limits,) \ |
| 57 | -m32 -march=i386 -mregparm=3 -mpreferred-stack-boundary=2 \ |
Kevin O'Connor | 4290241 | 2012-03-05 17:39:32 -0500 | [diff] [blame] | 58 | -minline-all-stringops \ |
Kevin O'Connor | 9887ecb | 2011-12-18 10:51:19 -0500 | [diff] [blame] | 59 | -freg-struct-return -ffreestanding -fno-delete-null-pointer-checks \ |
Kevin O'Connor | bd515ac | 2011-12-18 10:48:44 -0500 | [diff] [blame] | 60 | -ffunction-sections -fdata-sections -fno-common |
Kevin O'Connor | 786502d | 2008-02-27 10:41:41 -0500 | [diff] [blame] | 61 | COMMONCFLAGS += $(call cc-option,$(CC),-nopie,) |
| 62 | COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,) |
| 63 | COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,) |
| 64 | |
Kevin O'Connor | 3ffa8cc | 2012-12-11 21:43:05 -0500 | [diff] [blame] | 65 | CFLAGS32FLAT := $(COMMONCFLAGS) -DMODE16=0 -DMODESEGMENT=0 -fomit-frame-pointer |
| 66 | CFLAGSSEG := $(COMMONCFLAGS) -DMODESEGMENT=1 -fno-defer-pop \ |
Kevin O'Connor | bd515ac | 2011-12-18 10:48:44 -0500 | [diff] [blame] | 67 | $(call cc-option,$(CC),-fno-jump-tables,-DMANUAL_NO_JUMP_TABLE) \ |
| 68 | $(call cc-option,$(CC),-fno-tree-switch-conversion,) |
Kevin O'Connor | 3ffa8cc | 2012-12-11 21:43:05 -0500 | [diff] [blame] | 69 | CFLAGS32SEG := $(CFLAGSSEG) -DMODE16=0 -fomit-frame-pointer |
| 70 | CFLAGS16INC := $(CFLAGSSEG) -DMODE16=1 -Wa,src/code16gcc.s \ |
Kevin O'Connor | bd515ac | 2011-12-18 10:48:44 -0500 | [diff] [blame] | 71 | $(call cc-option,$(CC),--param large-stack-frame=4,-fno-inline) |
Kevin O'Connor | 3ffa8cc | 2012-12-11 21:43:05 -0500 | [diff] [blame] | 72 | CFLAGS16 := $(CFLAGS16INC) -fomit-frame-pointer |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 73 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 74 | # Run with "make V=1" to see the actual compile commands |
| 75 | ifdef V |
| 76 | Q= |
| 77 | else |
| 78 | Q=@ |
Kevin O'Connor | 0da7bfd | 2011-01-26 21:14:59 -0500 | [diff] [blame] | 79 | MAKEFLAGS += --no-print-directory |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 80 | endif |
| 81 | |
Kevin O'Connor | a7fc815 | 2012-01-15 01:52:27 -0500 | [diff] [blame] | 82 | # Default targets |
| 83 | -include $(KCONFIG_CONFIG) |
| 84 | |
Kevin O'Connor | 8744e15 | 2013-10-14 21:52:28 -0400 | [diff] [blame] | 85 | target-y := |
| 86 | target-$(CONFIG_QEMU) += $(OUT)bios.bin |
| 87 | target-$(CONFIG_CSM) += $(OUT)Csm16.bin |
| 88 | target-$(CONFIG_COREBOOT) += $(OUT)bios.bin.elf |
Kevin O'Connor | a7fc815 | 2012-01-15 01:52:27 -0500 | [diff] [blame] | 89 | target-$(CONFIG_BUILD_VGABIOS) += $(OUT)vgabios.bin |
| 90 | |
| 91 | all: $(target-y) |
| 92 | |
| 93 | # Make definitions |
Kevin O'Connor | 0da7bfd | 2011-01-26 21:14:59 -0500 | [diff] [blame] | 94 | .PHONY : all clean distclean FORCE |
Michael S. Tsirkin | 3dcc223 | 2012-08-30 12:59:31 +0300 | [diff] [blame] | 95 | .DELETE_ON_ERROR: |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 96 | |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 97 | |
| 98 | ################ Common build rules |
Kevin O'Connor | 410680b | 2008-03-02 20:48:35 -0500 | [diff] [blame] | 99 | |
Kevin O'Connor | 51d6ba3 | 2012-05-30 21:31:42 -0400 | [diff] [blame] | 100 | # Verify the build environment works. |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 101 | TESTGCC:=$(shell OUT="$(OUT)" CC="$(CC)" LD="$(LD)" IASL="$(IASL)" scripts/test-build.sh) |
Kevin O'Connor | 03f630e | 2009-03-26 20:45:36 -0400 | [diff] [blame] | 102 | ifeq "$(TESTGCC)" "-1" |
Kevin O'Connor | 51d6ba3 | 2012-05-30 21:31:42 -0400 | [diff] [blame] | 103 | $(error "Please upgrade the build environment") |
Kevin O'Connor | 03f630e | 2009-03-26 20:45:36 -0400 | [diff] [blame] | 104 | endif |
| 105 | |
Kevin O'Connor | fa2eacb | 2012-12-11 21:59:45 -0500 | [diff] [blame] | 106 | ifeq "$(TESTGCC)" "0" |
| 107 | # Use -fwhole-program |
| 108 | CFLAGSWHOLE=-fwhole-program -DWHOLE_PROGRAM |
Kevin O'Connor | 231f710 | 2009-01-25 16:11:27 -0500 | [diff] [blame] | 109 | endif |
| 110 | |
Kevin O'Connor | fa2eacb | 2012-12-11 21:59:45 -0500 | [diff] [blame] | 111 | # Do a whole file compile by textually including all C code. |
Kevin O'Connor | 0942e7f | 2009-06-15 22:27:01 -0400 | [diff] [blame] | 112 | define whole-compile |
| 113 | @echo " Compiling whole program $3" |
Kevin O'Connor | 2321912 | 2013-02-17 10:56:10 -0500 | [diff] [blame] | 114 | $(Q)printf '$(foreach i,$2,#include "$(CURDIR)/$i"\n)' > $3.tmp.c |
Kevin O'Connor | fa2eacb | 2012-12-11 21:59:45 -0500 | [diff] [blame] | 115 | $(Q)$(CC) $1 $(CFLAGSWHOLE) -c $3.tmp.c -o $3 |
Kevin O'Connor | 0942e7f | 2009-06-15 22:27:01 -0400 | [diff] [blame] | 116 | endef |
Kevin O'Connor | 410680b | 2008-03-02 20:48:35 -0500 | [diff] [blame] | 117 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 118 | %.strip.o: %.o |
| 119 | @echo " Stripping $@" |
| 120 | $(Q)$(STRIP) $< -o $@ |
Kevin O'Connor | 410680b | 2008-03-02 20:48:35 -0500 | [diff] [blame] | 121 | |
Kevin O'Connor | 3085376 | 2009-01-17 18:49:20 -0500 | [diff] [blame] | 122 | $(OUT)%.s: %.c |
Kevin O'Connor | 9e82122 | 2008-12-06 18:56:19 -0500 | [diff] [blame] | 123 | @echo " Compiling to assembler $@" |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 124 | $(Q)$(CC) $(CFLAGS16) -S -c $< -o $@ |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 125 | |
Kevin O'Connor | c39a272 | 2012-12-11 22:40:16 -0500 | [diff] [blame] | 126 | $(OUT)%.o: %.c $(OUT)autoconf.h |
| 127 | @echo " Compile checking $@" |
| 128 | $(Q)$(CC) $(CFLAGS32FLAT) -c $< -o $@ |
| 129 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 130 | $(OUT)%.lds: %.lds.S |
Kevin O'Connor | 9e82122 | 2008-12-06 18:56:19 -0500 | [diff] [blame] | 131 | @echo " Precompiling $@" |
Kevin O'Connor | 5325e91 | 2013-03-08 19:23:18 -0500 | [diff] [blame] | 132 | $(Q)$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ $< -o $@ |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 133 | |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 134 | |
| 135 | ################ Main BIOS build rules |
| 136 | |
Kevin O'Connor | 713be89 | 2011-01-26 21:19:25 -0500 | [diff] [blame] | 137 | $(OUT)asm-offsets.s: $(OUT)autoconf.h |
| 138 | |
Kevin O'Connor | 3cb0f50 | 2013-09-02 19:58:48 -0400 | [diff] [blame] | 139 | $(OUT)asm-offsets.h: $(OUT)src/asm-offsets.s |
Kevin O'Connor | 952974e | 2008-11-16 18:14:33 -0500 | [diff] [blame] | 140 | @echo " Generating offset file $@" |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 141 | $(Q)./scripts/gen-offsets.sh $< $@ |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 142 | |
Kevin O'Connor | 3cb0f50 | 2013-09-02 19:58:48 -0400 | [diff] [blame] | 143 | $(OUT)ccode16.o: $(OUT)autoconf.h $(patsubst %.c, $(OUT)src/%.o,$(SRC16)) ; $(call whole-compile, $(CFLAGS16), $(addprefix src/, $(SRC16)),$@) |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 144 | |
Kevin O'Connor | 3cb0f50 | 2013-09-02 19:58:48 -0400 | [diff] [blame] | 145 | $(OUT)code32seg.o: $(OUT)autoconf.h $(patsubst %.c, $(OUT)src/%.o,$(SRC32SEG)) ; $(call whole-compile, $(CFLAGS32SEG), $(addprefix src/, $(SRC32SEG)),$@) |
Kevin O'Connor | 871e0a0 | 2009-12-30 12:14:53 -0500 | [diff] [blame] | 146 | |
Kevin O'Connor | 3cb0f50 | 2013-09-02 19:58:48 -0400 | [diff] [blame] | 147 | $(OUT)ccode32flat.o: $(OUT)autoconf.h $(patsubst %.c, $(OUT)src/%.o,$(SRC32FLAT)) ; $(call whole-compile, $(CFLAGS32FLAT), $(addprefix src/, $(SRC32FLAT)),$@) |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 148 | |
Kevin O'Connor | 3cb0f50 | 2013-09-02 19:58:48 -0400 | [diff] [blame] | 149 | $(OUT)romlayout.o: src/romlayout.S $(OUT)asm-offsets.h |
Kevin O'Connor | 9e82122 | 2008-12-06 18:56:19 -0500 | [diff] [blame] | 150 | @echo " Compiling (16bit) $@" |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 151 | $(Q)$(CC) $(CFLAGS16) -c -D__ASSEMBLY__ $< -o $@ |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 152 | |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 153 | $(OUT)romlayout16.lds: $(OUT)ccode32flat.o $(OUT)code32seg.o $(OUT)ccode16.o $(OUT)romlayout.o scripts/layoutrom.py scripts/buildversion.sh |
Kevin O'Connor | 980b45a | 2012-03-24 11:42:53 -0400 | [diff] [blame] | 154 | @echo " Building ld scripts" |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 155 | $(Q)./scripts/buildversion.sh $(OUT)version.c |
Kevin O'Connor | 871e0a0 | 2009-12-30 12:14:53 -0500 | [diff] [blame] | 156 | $(Q)$(CC) $(CFLAGS32FLAT) -c $(OUT)version.c -o $(OUT)version.o |
Kevin O'Connor | 52a300f | 2009-12-26 23:32:57 -0500 | [diff] [blame] | 157 | $(Q)$(LD) -melf_i386 -r $(OUT)ccode32flat.o $(OUT)version.o -o $(OUT)code32flat.o |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 158 | $(Q)$(LD) -melf_i386 -r $(OUT)ccode16.o $(OUT)romlayout.o -o $(OUT)code16.o |
Kevin O'Connor | 52a300f | 2009-12-26 23:32:57 -0500 | [diff] [blame] | 159 | $(Q)$(OBJDUMP) -thr $(OUT)code32flat.o > $(OUT)code32flat.o.objdump |
Kevin O'Connor | 871e0a0 | 2009-12-30 12:14:53 -0500 | [diff] [blame] | 160 | $(Q)$(OBJDUMP) -thr $(OUT)code32seg.o > $(OUT)code32seg.o.objdump |
Kevin O'Connor | e6caca8 | 2009-07-13 20:31:35 -0400 | [diff] [blame] | 161 | $(Q)$(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 162 | $(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'Connor | 202024a | 2009-01-17 10:41:28 -0500 | [diff] [blame] | 163 | |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 164 | # These are actually built by scripts/layoutrom.py above, but by pulling them |
Stefan Reinauer | 32aa9f3 | 2011-01-27 18:39:01 -0800 | [diff] [blame] | 165 | # into an extra rule we prevent make -j from spawning layoutrom.py 4 times. |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 166 | $(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds $(OUT)code32flat.o $(OUT)code16.o: $(OUT)romlayout16.lds |
Kevin O'Connor | 202024a | 2009-01-17 10:41:28 -0500 | [diff] [blame] | 167 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 168 | $(OUT)rom16.o: $(OUT)code16.o $(OUT)romlayout16.lds |
| 169 | @echo " Linking $@" |
| 170 | $(Q)$(LD) -T $(OUT)romlayout16.lds $< -o $@ |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 171 | |
Kevin O'Connor | 871e0a0 | 2009-12-30 12:14:53 -0500 | [diff] [blame] | 172 | $(OUT)rom32seg.o: $(OUT)code32seg.o $(OUT)romlayout32seg.lds |
Kevin O'Connor | 114592f | 2009-09-28 21:32:08 -0400 | [diff] [blame] | 173 | @echo " Linking $@" |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 174 | $(Q)$(LD) -T $(OUT)romlayout32seg.lds $< -o $@ |
| 175 | |
| 176 | $(OUT)rom.o: $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o $(OUT)romlayout32flat.lds |
| 177 | @echo " Linking $@" |
| 178 | $(Q)$(LD) -T $(OUT)romlayout32flat.lds $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o -o $@ |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 179 | |
Kevin O'Connor | 8744e15 | 2013-10-14 21:52:28 -0400 | [diff] [blame] | 180 | $(OUT)bios.bin.prep: $(OUT)rom.o scripts/checkrom.py |
Kevin O'Connor | 9bcc527 | 2008-07-05 21:08:56 -0400 | [diff] [blame] | 181 | @echo " Prepping $@" |
Kevin O'Connor | 8744e15 | 2013-10-14 21:52:28 -0400 | [diff] [blame] | 182 | $(Q)rm -f $(OUT)bios.bin $(OUT)Csm16.bin $(OUT)bios.bin.elf |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 183 | $(Q)$(OBJDUMP) -thr $< > $<.objdump |
| 184 | $(Q)$(OBJCOPY) -O binary $< $(OUT)bios.bin.raw |
Sander Eikelenboom | 2a53385 | 2014-01-09 20:18:43 +0100 | [diff] [blame] | 185 | $(Q)$(PYTHON) ./scripts/checkrom.py $<.objdump $(CONFIG_ROM_SIZE) $(OUT)bios.bin.raw $(OUT)bios.bin.prep |
Kevin O'Connor | 8744e15 | 2013-10-14 21:52:28 -0400 | [diff] [blame] | 186 | |
| 187 | $(OUT)bios.bin: $(OUT)bios.bin.prep |
| 188 | @echo " Creating $@" |
| 189 | $(Q)cp $< $@ |
| 190 | |
| 191 | $(OUT)Csm16.bin: $(OUT)bios.bin.prep |
| 192 | @echo " Creating $@" |
| 193 | $(Q)cp $< $@ |
| 194 | |
| 195 | $(OUT)bios.bin.elf: $(OUT)rom.o $(OUT)bios.bin.prep |
| 196 | @echo " Creating $@" |
Kevin O'Connor | 3a337b2 | 2009-11-03 19:50:52 -0500 | [diff] [blame] | 197 | $(Q)$(STRIP) -R .comment $< -o $(OUT)bios.bin.elf |
Kevin O'Connor | 2fda7cb | 2008-07-05 20:41:53 -0400 | [diff] [blame] | 198 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 199 | |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 200 | ################ VGA build rules |
| 201 | |
| 202 | # VGA src files |
Kevin O'Connor | 4cd522e | 2013-11-29 12:14:34 -0500 | [diff] [blame] | 203 | SRCVGA=src/output.c src/string.c src/hw/pci.c src/hw/serialio.c \ |
Kevin O'Connor | dab0a74 | 2013-12-03 11:50:49 -0500 | [diff] [blame] | 204 | vgasrc/vgainit.c vgasrc/vgabios.c vgasrc/vgafb.c \ |
| 205 | vgasrc/vgafonts.c vgasrc/vbe.c \ |
Kevin O'Connor | 4ad2d10 | 2012-01-14 23:20:05 -0500 | [diff] [blame] | 206 | vgasrc/stdvga.c vgasrc/stdvgamodes.c vgasrc/stdvgaio.c \ |
Kevin O'Connor | 3471fdb | 2012-01-14 19:02:43 -0500 | [diff] [blame] | 207 | vgasrc/clext.c vgasrc/bochsvga.c vgasrc/geodevga.c |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 208 | |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 209 | CFLAGS16VGA = $(CFLAGS16INC) -Isrc |
Kevin O'Connor | 9887ecb | 2011-12-18 10:51:19 -0500 | [diff] [blame] | 210 | |
Kevin O'Connor | cdb9820 | 2013-09-15 01:17:06 -0400 | [diff] [blame] | 211 | $(OUT)vgaccode16.raw.s: $(OUT)autoconf.h $(patsubst %.c, $(OUT)%.o,$(SRCVGA)) ; $(call whole-compile, $(CFLAGS16VGA) -S, $(SRCVGA),$@) |
Kevin O'Connor | 35f42dc | 2012-03-05 17:45:55 -0500 | [diff] [blame] | 212 | |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 213 | $(OUT)vgaccode16.o: $(OUT)vgaccode16.raw.s scripts/vgafixup.py |
Kevin O'Connor | 35f42dc | 2012-03-05 17:45:55 -0500 | [diff] [blame] | 214 | @echo " Fixup VGA rom assembler" |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 215 | $(Q)$(PYTHON) ./scripts/vgafixup.py $< $(OUT)vgaccode16.s |
Kevin O'Connor | 35f42dc | 2012-03-05 17:45:55 -0500 | [diff] [blame] | 216 | $(Q)$(AS) --32 src/code16gcc.s $(OUT)vgaccode16.s -o $@ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 217 | |
Kevin O'Connor | 4a8b58c | 2013-11-30 19:16:15 -0500 | [diff] [blame] | 218 | $(OUT)vgaentry.o: vgasrc/vgaentry.S $(OUT)autoconf.h $(OUT)asm-offsets.h |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 219 | @echo " Compiling (16bit) $@" |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 220 | $(Q)$(CC) $(CFLAGS16VGA) -c -D__ASSEMBLY__ $< -o $@ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 221 | |
Kevin O'Connor | 3cb0f50 | 2013-09-02 19:58:48 -0400 | [diff] [blame] | 222 | $(OUT)vgarom.o: $(OUT)vgaccode16.o $(OUT)vgaentry.o $(OUT)vgasrc/vgalayout.lds scripts/buildversion.sh |
Kevin O'Connor | 980b45a | 2012-03-24 11:42:53 -0400 | [diff] [blame] | 223 | @echo " Linking $@" |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 224 | $(Q)./scripts/buildversion.sh $(OUT)vgaversion.c VAR16 |
Kevin O'Connor | 9d84088 | 2012-02-11 11:02:03 -0500 | [diff] [blame] | 225 | $(Q)$(CC) $(CFLAGS16VGA) -c $(OUT)vgaversion.c -o $(OUT)vgaversion.o |
Kevin O'Connor | 3cb0f50 | 2013-09-02 19:58:48 -0400 | [diff] [blame] | 226 | $(Q)$(LD) --gc-sections -T $(OUT)vgasrc/vgalayout.lds $(OUT)vgaccode16.o $(OUT)vgaentry.o $(OUT)vgaversion.o -o $@ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 227 | |
| 228 | $(OUT)vgabios.bin.raw: $(OUT)vgarom.o |
| 229 | @echo " Extracting binary $@" |
| 230 | $(Q)$(OBJCOPY) -O binary $< $@ |
| 231 | |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 232 | $(OUT)vgabios.bin: $(OUT)vgabios.bin.raw scripts/buildrom.py |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 233 | @echo " Finalizing rom $@" |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 234 | $(Q)$(PYTHON) ./scripts/buildrom.py $< $@ |
Kevin O'Connor | 1f2c307 | 2009-05-06 23:35:59 -0400 | [diff] [blame] | 235 | |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 236 | |
| 237 | ################ DSDT build rules |
| 238 | |
Kevin O'Connor | 51755c3 | 2012-08-29 21:27:37 -0400 | [diff] [blame] | 239 | iasl-option=$(shell if test -z "`$(1) $(2) 2>&1 > /dev/null`" \ |
Michael S. Tsirkin | 4da0725 | 2012-08-02 21:57:20 +0300 | [diff] [blame] | 240 | ; then echo "$(2)"; else echo "$(3)"; fi ;) |
| 241 | |
Kevin O'Connor | ccee6e8 | 2013-09-02 21:25:21 -0400 | [diff] [blame] | 242 | $(OUT)%.hex: %.dsl ./scripts/acpi_extract_preprocess.py ./scripts/acpi_extract.py |
Kevin O'Connor | 51d6ba3 | 2012-05-30 21:31:42 -0400 | [diff] [blame] | 243 | @echo " Compiling IASL $@" |
Kevin O'Connor | 5325e91 | 2013-03-08 19:23:18 -0500 | [diff] [blame] | 244 | $(Q)$(CPP) $(CPPFLAGS) $< -o $(OUT)$*.dsl.i.orig |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 245 | $(Q)$(PYTHON) ./scripts/acpi_extract_preprocess.py $(OUT)$*.dsl.i.orig > $(OUT)$*.dsl.i |
Michael S. Tsirkin | 4da0725 | 2012-08-02 21:57:20 +0300 | [diff] [blame] | 246 | $(Q)$(IASL) $(call iasl-option,$(IASL),-Pn,) -vs -l -tc -p $(OUT)$* $(OUT)$*.dsl.i |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 247 | $(Q)$(PYTHON) ./scripts/acpi_extract.py $(OUT)$*.lst > $(OUT)$*.off |
Michael S. Tsirkin | 2e55b03 | 2011-10-26 23:28:02 +0200 | [diff] [blame] | 248 | $(Q)cat $(OUT)$*.off > $@ |
Isaku Yamahata | 12cbb43 | 2010-06-07 17:19:27 +0900 | [diff] [blame] | 249 | |
Kevin O'Connor | ccee6e8 | 2013-09-02 21:25:21 -0400 | [diff] [blame] | 250 | $(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'Connor | d91f9d4 | 2009-10-08 21:57:15 -0400 | [diff] [blame] | 251 | |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 252 | ################ Kconfig rules |
| 253 | |
Kevin O'Connor | a7fc815 | 2012-01-15 01:52:27 -0500 | [diff] [blame] | 254 | define do-kconfig |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 255 | $(Q)mkdir -p $(OUT)/scripts/kconfig/lxdialog |
Kevin O'Connor | a7fc815 | 2012-01-15 01:52:27 -0500 | [diff] [blame] | 256 | $(Q)mkdir -p $(OUT)/include/config |
Gerd Hoffmann | d3c971e | 2013-09-25 09:40:50 +0200 | [diff] [blame] | 257 | $(Q)mkdir -p $(addprefix $(OUT), $(DIRS)) |
Kevin O'Connor | b942ce0 | 2013-08-17 10:13:14 -0400 | [diff] [blame] | 258 | $(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'Connor | a7fc815 | 2012-01-15 01:52:27 -0500 | [diff] [blame] | 259 | endef |
Kevin O'Connor | 0da7bfd | 2011-01-26 21:14:59 -0500 | [diff] [blame] | 260 | |
Kevin O'Connor | a7fc815 | 2012-01-15 01:52:27 -0500 | [diff] [blame] | 261 | $(OUT)autoconf.h : $(KCONFIG_CONFIG) ; $(call do-kconfig, silentoldconfig) |
Kevin O'Connor | 95b3d32 | 2013-12-23 13:44:59 -0500 | [diff] [blame] | 262 | $(KCONFIG_CONFIG): src/Kconfig vgasrc/Kconfig ; $(call do-kconfig, olddefconfig) |
Kevin O'Connor | a7fc815 | 2012-01-15 01:52:27 -0500 | [diff] [blame] | 263 | %onfig: ; $(call do-kconfig, $@) |
| 264 | help: ; $(call do-kconfig, $@) |
Sebastian Herbszt | aba52eb | 2011-11-24 17:20:36 +0100 | [diff] [blame] | 265 | |
Kevin O'Connor | 36feea9 | 2012-02-11 10:49:45 -0500 | [diff] [blame] | 266 | |
| 267 | ################ Generic rules |
| 268 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 269 | clean: |
Kevin O'Connor | 86cebee | 2008-11-06 18:57:10 -0500 | [diff] [blame] | 270 | $(Q)rm -rf $(OUT) |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 271 | |
Kevin O'Connor | 0da7bfd | 2011-01-26 21:14:59 -0500 | [diff] [blame] | 272 | distclean: clean |
| 273 | $(Q)rm -f .config .config.old |
| 274 | |
Kevin O'Connor | 836ec5c | 2013-09-14 22:05:58 -0400 | [diff] [blame] | 275 | -include $(patsubst %,$(OUT)%/*.d,$(DIRS)) |