Turn off new gcc tree-switch-conversion option in 16bit mode.
[seabios.git] / Makefile
1 # Legacy Bios build system
2 #
3 # Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 #
5 # This file may be distributed under the terms of the GNU LGPLv3 license.
6
7 # Output directory
8 OUT=out/
9
10 # Source files
11 SRCBOTH=output.c util.c floppy.c ata.c misc.c mouse.c kbd.c pci.c \
12         serial.c clock.c pic.c cdrom.c ps2port.c smpdetect.c resume.c \
13         pnpbios.c pirtable.c
14 SRC16=$(SRCBOTH) system.c disk.c apm.c pcibios.c vgahooks.c font.c
15 SRC32=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \
16       acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c
17
18 cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \
19               /dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;)
20
21 # Default compiler flags
22 COMMONCFLAGS = -Wall -Os -MD -m32 -march=i386 -mregparm=3 \
23                -mpreferred-stack-boundary=2 -mrtd -freg-struct-return \
24                -ffreestanding -fwhole-program -fomit-frame-pointer \
25                -fno-delete-null-pointer-checks -Wno-strict-aliasing
26 COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
27 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
28 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
29
30 override CFLAGS = $(COMMONCFLAGS) -g -DMODE16=0
31 CFLAGS16INC = $(COMMONCFLAGS) -DMODE16=1 -fno-jump-tables -fno-defer-pop \
32               $(call cc-option,$(CC),-fno-tree-switch-conversion,) \
33               $(call cc-option,$(CC),--param large-stack-frame=4,)
34 CFLAGS16INC += -ffunction-sections -fdata-sections
35 CFLAGS16 = $(CFLAGS16INC) -g
36
37 all: $(OUT) $(OUT)bios.bin
38
39 # Run with "make V=1" to see the actual compile commands
40 ifdef V
41 Q=
42 else
43 Q=@
44 endif
45
46 OBJCOPY=objcopy
47 OBJDUMP=objdump
48 NM=nm
49 STRIP=strip
50
51 .PHONY : all FORCE
52
53 vpath %.c src
54 vpath %.S src
55
56 ################ Build rules
57
58 TESTGCC:=$(shell CC=$(CC) tools/test-gcc.sh)
59 ifeq "$(TESTGCC)" "-1"
60 $(error "Please upgrade GCC")
61 endif
62
63 ifndef AVOIDCOMBINE
64 AVOIDCOMBINE=$(TESTGCC)
65 endif
66
67 # Do a whole file compile - two methods are supported.  The first
68 # involves including all the content textually via #include
69 # directives.  The second method uses gcc's "-combine" option.
70 ifeq "$(AVOIDCOMBINE)" "1"
71 define whole-compile
72 @echo "  Compiling whole program $3"
73 $(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
74 $(Q)$(CC) $1 -c $3.tmp.c -o $3
75 endef
76 else
77 define whole-compile
78 @echo "  Compiling whole program $3"
79 $(Q)$(CC) $1 -combine -c $2 -o $3
80 endef
81 endif
82
83
84 $(OUT)%.s: %.c
85         @echo "  Compiling to assembler $@"
86         $(Q)$(CC) $(CFLAGS16INC) -S -c $< -o $@
87
88 $(OUT)%.lds: %.lds.S
89         @echo "  Precompiling $@"
90         $(Q)$(CPP) -P -D__ASSEMBLY__ $< -o $@
91
92 $(OUT)asm-offsets.h: $(OUT)asm-offsets.s
93         @echo "  Generating offset file $@"
94         $(Q)./tools/gen-offsets.sh $< $@
95
96 $(OUT)ccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
97
98 $(OUT)romlayout16.o: romlayout.S $(OUT)ccode.16.s $(OUT)asm-offsets.h
99         @echo "  Compiling (16bit) $@"
100         $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ $< -o $@
101
102 $(OUT)ccode32.o: ; $(call whole-compile, $(CFLAGS), $(addprefix src/, $(SRC32)),$@)
103
104 $(OUT)rom32.o: $(OUT)ccode32.o $(OUT)rombios32.lds
105         @echo "  Linking (no relocs) $@"
106         $(Q)$(LD) -r -T $(OUT)rombios32.lds $< -o $@
107
108 $(OUT)romlayout.lds: $(OUT)romlayout16.o
109         @echo "  Building layout information $@"
110         $(Q)$(OBJDUMP) -h $< | ./tools/layoutrom.py $@
111
112 $(OUT)rombios16.lds: $(OUT)romlayout.lds
113
114 $(OUT)rom16.o: $(OUT)romlayout16.o $(OUT)rom32.o $(OUT)rombios16.lds
115         @echo "  Linking (16bit) $@"
116         $(Q)$(OBJCOPY) --prefix-symbols=_code32_ $(OUT)rom32.o $(OUT)rom32.rename.o
117         $(Q)$(LD) -T $(OUT)rombios16.lds -R $(OUT)rom32.rename.o $< -o $@
118
119 $(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32.o $(OUT)rombios.lds
120         @echo "  Linking $@"
121         $(Q)$(LD) -T $(OUT)rombios.lds $(OUT)rom16.o $(OUT)rom32.o -o $@
122
123 $(OUT)bios.bin.elf: $(OUT)rom.o
124         @echo "  Prepping $@"
125         $(Q)$(NM) $< | ./tools/checkrom.py
126         $(Q)$(STRIP) $< -o $@
127
128 $(OUT)bios.bin: $(OUT)bios.bin.elf
129         @echo "  Extracting binary $@"
130         $(Q)$(OBJCOPY) -O binary $< $@
131
132
133 ####### Generic rules
134 clean:
135         $(Q)rm -rf $(OUT)
136
137 $(OUT):
138         $(Q)mkdir $@
139
140 -include $(OUT)*.d