Add LZMA decompression support to CBFS.
[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       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
56 vpath %.S src
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)rombios16.lds: $(OUT)romlayout.lds
115
116 $(OUT)rom16.o: $(OUT)romlayout16.o $(OUT)rom32.o $(OUT)rombios16.lds
117         @echo "  Linking (16bit) $@"
118         $(Q)$(OBJCOPY) --prefix-symbols=_code32_ $(OUT)rom32.o $(OUT)rom32.rename.o
119         $(Q)$(LD) -T $(OUT)rombios16.lds -R $(OUT)rom32.rename.o $< -o $@
120
121 $(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32.o $(OUT)rombios.lds
122         @echo "  Linking $@"
123         $(Q)$(LD) -T $(OUT)rombios.lds $(OUT)rom16.o $(OUT)rom32.o -o $@
124
125 $(OUT)bios.bin.elf: $(OUT)rom.o
126         @echo "  Prepping $@"
127         $(Q)$(NM) $< | ./tools/checkrom.py
128         $(Q)$(STRIP) $< -o $@
129
130 $(OUT)bios.bin: $(OUT)bios.bin.elf
131         @echo "  Extracting binary $@"
132         $(Q)$(OBJCOPY) -O binary $< $@
133
134
135 ####### Generic rules
136 clean:
137         $(Q)rm -rf $(OUT)
138
139 $(OUT):
140         $(Q)mkdir $@
141
142 -include $(OUT)*.d