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