Add support for gcc v3.x compilers.
[seabios.git] / Makefile
1 # SeaBIOS build system
2 #
3 # Copyright (C) 2008,2009  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       lzmadecode.c
18
19 cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \
20               /dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;)
21
22 # Default compiler flags
23 COMMONCFLAGS = -Wall -Os -MD -m32 -march=i386 -mregparm=3 \
24                -mpreferred-stack-boundary=2 -mrtd -freg-struct-return \
25                $(call cc-option,$(CC),-fwhole-program -DWHOLE_PROGRAM,) \
26                -ffreestanding -fomit-frame-pointer \
27                -fno-delete-null-pointer-checks -Wno-strict-aliasing \
28                -ffunction-sections -fdata-sections \
29                -minline-all-stringops
30 COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
31 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
32 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
33
34 override CFLAGS = $(COMMONCFLAGS) -g -DMODE16=0
35 CFLAGS16INC = $(COMMONCFLAGS) -DMODE16=1 -fno-defer-pop \
36               $(call cc-option,$(CC),-fno-jump-tables,-DMANUAL_NO_JUMP_TABLE) \
37               $(call cc-option,$(CC),-fno-tree-switch-conversion,) \
38               $(call cc-option,$(CC),--param large-stack-frame=4,)
39 CFLAGS16 = $(CFLAGS16INC) -g
40
41 all: $(OUT) $(OUT)bios.bin
42
43 # Run with "make V=1" to see the actual compile commands
44 ifdef V
45 Q=
46 else
47 Q=@
48 endif
49
50 OBJCOPY=objcopy
51 OBJDUMP=objdump
52 NM=nm
53 STRIP=strip
54
55 .PHONY : all FORCE
56
57 vpath %.c src vgasrc
58 vpath %.S src vgasrc
59
60 ################ Build rules
61
62 TESTGCC:=$(shell CC=$(CC) tools/test-gcc.sh)
63 ifeq "$(TESTGCC)" "-1"
64 $(error "Please upgrade GCC")
65 endif
66
67 ifndef AVOIDCOMBINE
68 AVOIDCOMBINE=$(TESTGCC)
69 endif
70
71 # Do a whole file compile - two methods are supported.  The first
72 # involves including all the content textually via #include
73 # directives.  The second method uses gcc's "-combine" option.
74 ifeq "$(AVOIDCOMBINE)" "1"
75 define whole-compile
76 @echo "  Compiling whole program $3"
77 $(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
78 $(Q)$(CC) $1 -c $3.tmp.c -o $3
79 endef
80 else
81 define whole-compile
82 @echo "  Compiling whole program $3"
83 $(Q)$(CC) $1 -combine -c $2 -o $3
84 endef
85 endif
86
87
88 $(OUT)%.s: %.c
89         @echo "  Compiling to assembler $@"
90         $(Q)$(CC) $(CFLAGS16INC) -S -c $< -o $@
91
92 $(OUT)%.lds: %.lds.S
93         @echo "  Precompiling $@"
94         $(Q)$(CPP) -P -D__ASSEMBLY__ $< -o $@
95
96 $(OUT)asm-offsets.h: $(OUT)asm-offsets.s
97         @echo "  Generating offset file $@"
98         $(Q)./tools/gen-offsets.sh $< $@
99
100 $(OUT)ccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
101
102 $(OUT)romlayout16.o: romlayout.S $(OUT)ccode.16.s $(OUT)asm-offsets.h
103         @echo "  Compiling (16bit) $@"
104         $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ $< -o $@
105
106 $(OUT)ccode32.o: ; $(call whole-compile, $(CFLAGS), $(addprefix src/, $(SRC32)),$@)
107
108 $(OUT)rom32.o: $(OUT)ccode32.o $(OUT)rombios32.lds
109         @echo "  Linking (no relocs) $@"
110         $(Q)$(LD) -r -T $(OUT)rombios32.lds $< -o $@
111
112 $(OUT)romlayout16.lds $(OUT)romlayout32.lds: $(OUT)ccode32.o $(OUT)romlayout16.o
113         @echo "  Building layout information $@"
114         $(Q)$(OBJDUMP) -thr $(OUT)ccode32.o > $(OUT)ccode32.o.objdump
115         $(Q)$(OBJDUMP) -thr $(OUT)romlayout16.o > $(OUT)romlayout16.o.objdump
116         $(Q)./tools/layoutrom.py $(OUT)romlayout16.o.objdump $(OUT)ccode32.o.objdump $(OUT)romlayout16.lds $(OUT)romlayout32.lds
117
118 $(OUT)layout16.lds: $(OUT)romlayout16.lds
119 $(OUT)rombios32.lds: $(OUT)romlayout32.lds
120
121 $(OUT)rom16.o: $(OUT)romlayout16.o $(OUT)rom32.o $(OUT)layout16.lds
122         @echo "  Linking (no relocs) $@"
123         $(Q)$(LD) -r -T $(OUT)layout16.lds $< -o $@
124
125 $(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32.o $(OUT)rombios16.lds $(OUT)rombios.lds
126         @echo "  Linking $@"
127         $(Q)$(LD) -T $(OUT)rombios16.lds $(OUT)rom16.o -R $(OUT)rom32.o -o $(OUT)rom16.reloc.o
128         $(Q)$(STRIP) $(OUT)rom16.reloc.o -o $(OUT)rom16.final.o
129         $(Q)$(OBJCOPY) --extract-symbol --adjust-vma 0xf0000 $(OUT)rom16.o $(OUT)rom16.moved.o
130         $(Q)$(LD) -T $(OUT)rombios.lds $(OUT)rom16.final.o $(OUT)rom32.o -R $(OUT)rom16.moved.o -o $@
131
132 $(OUT)bios.bin.elf: $(OUT)rom.o
133         @echo "  Prepping $@"
134         $(Q)$(NM) $< | ./tools/checkrom.py
135         $(Q)$(STRIP) $< -o $@
136
137 $(OUT)bios.bin: $(OUT)bios.bin.elf
138         @echo "  Extracting binary $@"
139         $(Q)$(OBJCOPY) -O binary $< $@
140
141
142 ################ VGA build rules
143
144 # VGA src files
145 SRCVGA=src/output.c src/util.c vgasrc/vga.c vgasrc/vgafb.c vgasrc/vgaio.c \
146        vgasrc/vgatables.c vgasrc/vgafonts.c vgasrc/clext.c
147
148 $(OUT)vgaccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S -Isrc, $(SRCVGA),$@)
149
150 $(OUT)vgalayout16.o: vgaentry.S $(OUT)vgaccode.16.s $(OUT)asm-offsets.h
151         @echo "  Compiling (16bit) $@"
152         $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ -Isrc $< -o $@
153
154 $(OUT)vgarom.o: $(OUT)vgalayout16.o $(OUT)vgalayout.lds
155         @echo "  Linking $@"
156         $(Q)$(LD) --gc-sections -T $(OUT)vgalayout.lds $(OUT)vgalayout16.o -o $@
157
158 $(OUT)vgabios.bin.raw: $(OUT)vgarom.o
159         @echo "  Extracting binary $@"
160         $(Q)$(OBJCOPY) -O binary $< $@
161
162 $(OUT)vgabios.bin: $(OUT)vgabios.bin.raw
163         @echo "  Finalizing rom $@"
164         $(Q)./tools/buildrom.py $< $@
165
166 ####### Generic rules
167 clean:
168         $(Q)rm -rf $(OUT)
169
170 $(OUT):
171         $(Q)mkdir $@
172
173 -include $(OUT)*.d