Move variables from assembler to C 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 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 post_menu.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 \
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),--param large-stack-frame=4,)
33 CFLAGS16INC += -ffunction-sections -fdata-sections
34 CFLAGS16 = $(CFLAGS16INC) -g
35
36 all: $(OUT) $(OUT)bios.bin
37
38 # Run with "make V=1" to see the actual compile commands
39 ifdef V
40 Q=
41 else
42 Q=@
43 endif
44
45 OBJCOPY=objcopy
46 OBJDUMP=objdump
47 NM=nm
48 STRIP=strip
49
50 .PHONY : all FORCE
51
52 vpath %.c src
53 vpath %.S src
54
55 ################ Build rules
56
57 # Do a whole file compile - two methods are supported.  The first
58 # involves including all the content textually via #include
59 # directives.  The second method uses gcc's "-combine" option.
60 ifdef AVOIDCOMBINE
61 define whole-compile
62 @echo "  Compiling whole program $3"
63 $(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
64 $(Q)$(CC) $1 -c $3.tmp.c -o $3
65 endef
66 else
67 define whole-compile
68 @echo "  Compiling whole program $3"
69 $(Q)$(CC) $1 -combine -c $2 -o $3
70 endef
71 endif
72
73
74 $(OUT)%.s: %.c
75         @echo "  Compiling to assembler $@"
76         $(Q)$(CC) $(CFLAGS16INC) -S -c $< -o $@
77
78 $(OUT)%.lds: %.lds.S
79         @echo "  Precompiling $@"
80         $(Q)$(CPP) -P -D__ASSEMBLY__ $< -o $@
81
82 $(OUT)asm-offsets.h: $(OUT)asm-offsets.s
83         @echo "  Generating offset file $@"
84         $(Q)./tools/gen-offsets.sh $< $@
85
86 $(OUT)ccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
87
88 $(OUT)romlayout16.o: romlayout.S $(OUT)ccode.16.s $(OUT)asm-offsets.h
89         @echo "  Compiling (16bit) $@"
90         $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ $< -o $@
91
92 $(OUT)ccode32.o: ; $(call whole-compile, $(CFLAGS), $(addprefix src/, $(SRC32)),$@)
93
94 $(OUT)rom32.o: $(OUT)ccode32.o $(OUT)rombios32.lds
95         @echo "  Linking (no relocs) $@"
96         $(Q)$(LD) -r -d -T $(OUT)rombios32.lds $< -o $@
97
98 $(OUT)romlayout.lds: $(OUT)romlayout16.o
99         @echo "  Building layout information $@"
100         $(Q)$(OBJDUMP) -h $< | ./tools/layoutrom.py $@
101
102 $(OUT)rombios16.lds: $(OUT)romlayout.lds
103
104 $(OUT)rom16.o: $(OUT)romlayout16.o $(OUT)rom32.o $(OUT)rombios16.lds
105         @echo "  Linking (16bit) $@"
106         $(Q)$(OBJCOPY) --prefix-symbols=_code32_ $(OUT)rom32.o $(OUT)rom32.rename.o
107         $(Q)$(LD) -T $(OUT)rombios16.lds -R $(OUT)rom32.rename.o $< -o $@
108
109 $(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32.o $(OUT)rombios.lds
110         @echo "  Linking $@"
111         $(Q)$(LD) -T $(OUT)rombios.lds $(OUT)rom16.o $(OUT)rom32.o -o $@
112
113 $(OUT)bios.bin.elf: $(OUT)rom.o
114         @echo "  Prepping $@"
115         $(Q)$(NM) $< | ./tools/checkrom.py
116         $(Q)$(STRIP) $< -o $@
117
118 $(OUT)bios.bin: $(OUT)bios.bin.elf
119         @echo "  Extracting binary $@"
120         $(Q)$(OBJCOPY) -O binary $< $@
121
122
123 ####### Generic rules
124 clean:
125         $(Q)rm -rf $(OUT)
126
127 $(OUT):
128         $(Q)mkdir $@
129
130 -include $(OUT)*.d