Separate out and enhance option rom scanning code.
[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 GPLv3 license.
6
7 # Output directory
8 OUT=out/
9
10 # Source files
11 SRCBOTH=output.c util.c floppy.c ata.c system.c mouse.c kbd.c pci.c \
12         serial.c clock.c pic.c cdrom.c ps2port.c
13 SRC16=$(SRCBOTH) disk.c apm.c pcibios.c vgahooks.c
14 SRC32=$(SRCBOTH) post.c shadow.c post_menu.c memmap.c coreboot.c boot.c \
15       acpi.c pirtable.c smm.c smpdetect.c mptable.c smbios.c pciinit.c \
16       optionroms.c
17 TABLESRC=font.c cbt.c floppy_dbt.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 \
25                -ffreestanding -fwhole-program -fomit-frame-pointer \
26                -fno-delete-null-pointer-checks
27 COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
28 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
29 COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
30
31 override CFLAGS = $(COMMONCFLAGS) -g -DMODE16=0
32 CFLAGS16INC = $(COMMONCFLAGS) -DMODE16=1 -fno-jump-tables -fno-defer-pop \
33               $(call cc-option,$(CC),--param large-stack-frame=8,)
34 CFLAGS16 = $(CFLAGS16INC) -g
35
36 TABLETMP=$(addprefix $(OUT), $(patsubst %.c,%.16.s,$(TABLESRC)))
37 all: $(OUT) $(OUT)bios.bin $(TABLETMP)
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 .PHONY : all FORCE
47
48 vpath %.c src
49 vpath %.S src
50
51 ################ Build rules
52
53 # Do a whole file compile - two methods are supported.  The first
54 # involves including all the content textually via #include
55 # directives.  The second method uses gcc's "-combine" option.
56 ifdef AVOIDCOMBINE
57 DEPHACK=
58 define whole-compile
59 @echo "  Compiling whole program $3"
60 $(Q)/bin/echo -e '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
61 $(Q)$(CC) $1 -c $3.tmp.c -o $3
62 endef
63 else
64 # Ugly way to get gcc to generate .d files correctly.
65 DEPHACK=-combine src/null.c
66 define whole-compile
67 @echo "  Compiling whole program $3"
68 $(Q)$(CC) $1 -combine -c $2 -o $3
69 endef
70 endif
71
72
73 $(OUT)%.proc.16.s: $(OUT)%.16.s
74         @echo "  Moving data sections to text in $<"
75         $(Q)sed 's/\t\.section\t\.rodata.*// ; s/\t\.data//' < $< > $@
76
77 $(OUT)%.16.s: %.c
78         @echo "  Generating assembler for $<"
79         $(Q)$(CC) $(CFLAGS16INC) $(DEPHACK) -S -c $< -o $@
80
81 $(OUT)%.lds: %.lds.S
82         @echo "  Precompiling $<"
83         $(Q)$(CPP) -P $< -o $@
84
85
86 $(OUT)blob.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
87
88 TABLEASM=$(addprefix $(OUT), $(patsubst %.c,%.proc.16.s,$(TABLESRC)))
89 $(OUT)romlayout16.o: romlayout.S $(OUT)blob.16.s $(TABLEASM)
90         @echo "  Generating 16bit layout of $@"
91         $(Q)$(CC) $(CFLAGS16) -c $< -o $@
92
93 $(OUT)romlayout32.o: ; $(call whole-compile, $(CFLAGS), $(addprefix src/, $(SRC32)),$@)
94
95 $(OUT)rom32.o: $(OUT)romlayout32.o $(OUT)rombios32.lds
96         @echo "  Linking (no relocs) $@"
97         $(Q)ld -r -T $(OUT)rombios32.lds $< -o $@
98
99 $(OUT)rom16.o: $(OUT)romlayout16.o $(OUT)rom32.o $(OUT)rombios16.lds
100         @echo "  Linking $@"
101         $(Q)objcopy --prefix-symbols=_code32_ $(OUT)rom32.o $(OUT)rom32.rename.o
102         $(Q)ld -T $(OUT)rombios16.lds -R $(OUT)rom32.rename.o $< -o $@
103
104 $(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32.o $(OUT)rombios.lds
105         @echo "  Linking $@"
106         $(Q)ld -T $(OUT)rombios.lds $(OUT)rom16.o $(OUT)rom32.o -o $@
107
108 $(OUT)bios.bin.elf: $(OUT)rom.o
109         @echo "  Prepping $@"
110         $(Q)nm $< | ./tools/checkrom.py
111         $(Q)strip $< -o $@
112
113 $(OUT)bios.bin: $(OUT)bios.bin.elf
114         @echo "  Extracting binary $@"
115         $(Q)objcopy -O binary $< $@
116
117
118 ####### Generic rules
119 clean:
120         rm -rf $(OUT)
121
122 $(OUT):
123         mkdir $@
124
125 -include $(OUT)*.d