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