Start using Kconfig to configure SeaBIOS settings.
[seabios.git] / Makefile
1 # SeaBIOS build system
2 #
3 # Copyright (C) 2008-2010  Kevin O'Connor <kevin@koconnor.net>
4 #
5 # This file may be distributed under the terms of the GNU LGPLv3 license.
6
7 # Program version
8 VERSION=pre-0.6.2-$(shell date +"%Y%m%d_%H%M%S")-$(shell hostname)
9
10 # Output directory
11 OUT=out/
12
13 # Source files
14 SRCBOTH=misc.c pmm.c stacks.c output.c util.c block.c floppy.c ata.c mouse.c \
15         kbd.c pci.c serial.c clock.c pic.c cdrom.c ps2port.c smp.c resume.c \
16         pnpbios.c pirtable.c vgahooks.c ramdisk.c pcibios.c blockcmd.c \
17         usb.c usb-uhci.c usb-ohci.c usb-ehci.c usb-hid.c usb-msc.c \
18         virtio-ring.c virtio-pci.c virtio-blk.c apm.c ahci.c
19 SRC16=$(SRCBOTH) system.c disk.c font.c
20 SRC32FLAT=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \
21       acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c \
22       lzmadecode.c bootsplash.c jpeg.c usb-hub.c paravirt.c dev-i440fx.c \
23       pci_region.c
24 SRC32SEG=util.c output.c pci.c pcibios.c apm.c stacks.c
25
26 cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \
27               /dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;)
28
29 # Default compiler flags
30 COMMONCFLAGS = -Os -MD -Wall -Wno-strict-aliasing -Wold-style-definition \
31                $(call cc-option,$(CC),-Wtype-limits,) \
32                -m32 -march=i386 -mregparm=3 -mpreferred-stack-boundary=2 \
33                -mrtd -minline-all-stringops \
34                -freg-struct-return -ffreestanding -fomit-frame-pointer \
35                -fno-delete-null-pointer-checks \
36                -ffunction-sections -fdata-sections -fno-common
37 COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
38 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
39 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
40
41 CFLAGS32FLAT = $(COMMONCFLAGS) -g -DMODE16=0 -DMODESEGMENT=0
42 CFLAGSSEG = $(COMMONCFLAGS) -DMODESEGMENT=1 -fno-defer-pop \
43             $(call cc-option,$(CC),-fno-jump-tables,-DMANUAL_NO_JUMP_TABLE) \
44             $(call cc-option,$(CC),-fno-tree-switch-conversion,)
45 CFLAGS32SEG = $(CFLAGSSEG) -DMODE16=0 -g
46 CFLAGS16INC = $(CFLAGSSEG) -DMODE16=1 \
47               $(call cc-option,$(CC),--param large-stack-frame=4,-fno-inline)
48 CFLAGS16 = $(CFLAGS16INC) -g
49
50 all: $(OUT) $(OUT)bios.bin
51
52 # Run with "make V=1" to see the actual compile commands
53 ifdef V
54 Q=
55 else
56 Q=@
57 MAKEFLAGS += --no-print-directory
58 endif
59
60 OBJCOPY=objcopy
61 OBJDUMP=objdump
62 STRIP=strip
63
64 .PHONY : all clean distclean FORCE
65
66 vpath %.c src vgasrc
67 vpath %.S src vgasrc
68
69 ################ Build rules
70
71 # Verify the gcc configuration and test if -fwhole-program works.
72 TESTGCC:=$(shell CC="$(CC)" tools/test-gcc.sh)
73 ifeq "$(TESTGCC)" "-1"
74 $(error "Please upgrade GCC")
75 endif
76
77 ifndef COMPSTRAT
78 COMPSTRAT=$(TESTGCC)
79 endif
80
81 # Do a whole file compile - three methods are supported.
82 ifeq "$(COMPSTRAT)" "1"
83 # First method - use -fwhole-program without -combine.
84 define whole-compile
85 @echo "  Compiling whole program $3"
86 $(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
87 $(Q)$(CC) $1 -fwhole-program -DWHOLE_PROGRAM -c $3.tmp.c -o $3
88 endef
89 else
90 ifeq "$(COMPSTRAT)" "2"
91 # Second menthod - don't use -fwhole-program at all.
92 define whole-compile
93 @echo "  Compiling whole program $3"
94 $(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
95 $(Q)$(CC) $1 -c $3.tmp.c -o $3
96 endef
97 else
98 # Third (and preferred) method - use -fwhole-program with -combine
99 define whole-compile
100 @echo "  Compiling whole program $3"
101 $(Q)$(CC) $1 -fwhole-program -DWHOLE_PROGRAM -combine -c $2 -o $3
102 endef
103 endif
104 endif
105
106 %.strip.o: %.o
107         @echo "  Stripping $@"
108         $(Q)$(STRIP) $< -o $@
109
110 $(OUT)%.s: %.c
111         @echo "  Compiling to assembler $@"
112         $(Q)$(CC) $(CFLAGS16INC) -S -c $< -o $@
113
114 $(OUT)%.lds: %.lds.S
115         @echo "  Precompiling $@"
116         $(Q)$(CPP) -P -D__ASSEMBLY__ $< -o $@
117
118 $(OUT)asm-offsets.s: $(OUT)autoconf.h
119
120 $(OUT)asm-offsets.h: $(OUT)asm-offsets.s
121         @echo "  Generating offset file $@"
122         $(Q)./tools/gen-offsets.sh $< $@
123
124
125 $(OUT)ccode.16.s: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
126
127 $(OUT)code32seg.o: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS32SEG), $(addprefix src/, $(SRC32SEG)),$@)
128
129 $(OUT)ccode32flat.o: $(OUT)autoconf.h ; $(call whole-compile, $(CFLAGS32FLAT), $(addprefix src/, $(SRC32FLAT)),$@)
130
131 $(OUT)code16.o: romlayout.S $(OUT)ccode.16.s $(OUT)asm-offsets.h
132         @echo "  Compiling (16bit) $@"
133         $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ $< -o $@
134
135 $(OUT)romlayout16.lds $(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds $(OUT)code32flat.o: $(OUT)ccode32flat.o $(OUT)code32seg.o $(OUT)code16.o tools/layoutrom.py
136         @echo "  Building ld scripts (version \"$(VERSION)\")"
137         $(Q)echo 'const char VERSION[] = "$(VERSION)";' > $(OUT)version.c
138         $(Q)$(CC) $(CFLAGS32FLAT) -c $(OUT)version.c -o $(OUT)version.o
139         $(Q)$(LD) -melf_i386 -r $(OUT)ccode32flat.o $(OUT)version.o -o $(OUT)code32flat.o
140         $(Q)$(OBJDUMP) -thr $(OUT)code32flat.o > $(OUT)code32flat.o.objdump
141         $(Q)$(OBJDUMP) -thr $(OUT)code32seg.o > $(OUT)code32seg.o.objdump
142         $(Q)$(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump
143         $(Q)./tools/layoutrom.py $(OUT)code16.o.objdump $(OUT)code32seg.o.objdump $(OUT)code32flat.o.objdump $(OUT)romlayout16.lds $(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds
144
145
146 $(OUT)rom16.o: $(OUT)code16.o $(OUT)romlayout16.lds
147         @echo "  Linking $@"
148         $(Q)$(LD) -T $(OUT)romlayout16.lds $< -o $@
149
150 $(OUT)rom32seg.o: $(OUT)code32seg.o $(OUT)romlayout32seg.lds
151         @echo "  Linking $@"
152         $(Q)$(LD) -T $(OUT)romlayout32seg.lds $< -o $@
153
154 $(OUT)rom.o: $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o $(OUT)romlayout32flat.lds
155         @echo "  Linking $@"
156         $(Q)$(LD) -T $(OUT)romlayout32flat.lds $(OUT)rom16.strip.o $(OUT)rom32seg.strip.o $(OUT)code32flat.o -o $@
157
158 $(OUT)bios.bin.elf $(OUT)bios.bin: $(OUT)rom.o tools/checkrom.py
159         @echo "  Prepping $@"
160         $(Q)$(OBJDUMP) -thr $< > $<.objdump
161         $(Q)$(OBJCOPY) -O binary $< $(OUT)bios.bin.raw
162         $(Q)./tools/checkrom.py $<.objdump $(OUT)bios.bin.raw $(OUT)bios.bin
163         $(Q)$(STRIP) -R .comment $< -o $(OUT)bios.bin.elf
164
165
166 ################ VGA build rules
167
168 # VGA src files
169 SRCVGA=src/output.c src/util.c vgasrc/vga.c vgasrc/vgafb.c vgasrc/vgaio.c \
170        vgasrc/vgatables.c vgasrc/vgafonts.c vgasrc/clext.c
171
172 $(OUT)vgaccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S -Isrc, $(SRCVGA),$@)
173
174 $(OUT)vgalayout16.o: vgaentry.S $(OUT)vgaccode.16.s $(OUT)asm-offsets.h
175         @echo "  Compiling (16bit) $@"
176         $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ -Isrc $< -o $@
177
178 $(OUT)vgarom.o: $(OUT)vgalayout16.o $(OUT)vgalayout.lds
179         @echo "  Linking $@"
180         $(Q)$(LD) --gc-sections -T $(OUT)vgalayout.lds $(OUT)vgalayout16.o -o $@
181
182 $(OUT)vgabios.bin.raw: $(OUT)vgarom.o
183         @echo "  Extracting binary $@"
184         $(Q)$(OBJCOPY) -O binary $< $@
185
186 $(OUT)vgabios.bin: $(OUT)vgabios.bin.raw tools/buildrom.py
187         @echo "  Finalizing rom $@"
188         $(Q)./tools/buildrom.py $< $@
189
190 ####### dsdt build rules
191 src/%.hex: src/%.dsl
192         @echo "Compiling DSDT"
193         $(Q)cpp -P $< > $(OUT)$*.dsl.i
194         $(Q)iasl -tc -p $(OUT)$* $(OUT)$*.dsl.i
195         $(Q)cp $(OUT)$*.hex $@
196
197 $(OUT)ccode32flat.o: src/acpi-dsdt.hex
198
199 ####### Kconfig rules
200 export HOSTCC             := $(CC)
201 export CONFIG_SHELL       := sh
202 export KCONFIG_AUTOHEADER := autoconf.h
203 export KCONFIG_CONFIG     := $(CURDIR)/.config
204
205 $(OUT)autoconf.h : $(KCONFIG_CONFIG)
206         $(Q)$(MAKE) silentoldconfig
207
208 $(KCONFIG_CONFIG):
209         $(Q)$(MAKE) defconfig
210
211 %onfig:
212         $(Q)mkdir -p $(OUT)/tools/kconfig/lxdialog
213         $(Q)mkdir -p $(OUT)/include/config
214         $(Q)$(MAKE) -C $(OUT) -f $(CURDIR)/tools/kconfig/Makefile srctree=$(CURDIR) src=tools/kconfig obj=tools/kconfig Q=$(Q) Kconfig=$(CURDIR)/src/Kconfig $@
215
216 ####### Generic rules
217 clean:
218         $(Q)rm -rf $(OUT)
219
220 distclean: clean
221         $(Q)rm -f .config .config.old
222
223 $(OUT):
224         $(Q)mkdir $@
225
226 -include $(OUT)*.d