blob: bb078f457e66e897b0c40d2e119b04f5aebcf601 [file] [log] [blame]
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05001# 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
8OUT=out/
9
10# Source files
Kevin O'Connor3491e8b2008-02-29 00:22:27 -050011SRC16=floppy.c disk.c system.c clock.c serial.c kbd.c mouse.c output.c \
Kevin O'Connor95b2f782008-03-05 19:52:06 -050012 boot.c ata.c cdrom.c apm.c
Kevin O'Connor47baa3c2008-03-08 13:17:16 -050013SRC32=post.c output.c
Kevin O'Connor44c631d2008-03-02 11:24:36 -050014TABLESRC=font.c cbt.c floppy_dbt.c
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050015
Kevin O'Connor786502d2008-02-27 10:41:41 -050016cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \
17 /dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;)
18
Kevin O'Connorbdce35f2008-02-26 21:33:14 -050019# Default compiler flags
Kevin O'Connor410680b2008-03-02 20:48:35 -050020COMMONCFLAGS = -Wall -Os -MD -m32 -march=i386 -mregparm=2 \
21 -ffreestanding -fwhole-program
Kevin O'Connor786502d2008-02-27 10:41:41 -050022COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
23COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
24COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
25
26CFLAGS = $(COMMONCFLAGS) -g
Kevin O'Connor410680b2008-03-02 20:48:35 -050027CFLAGS16INC = $(COMMONCFLAGS) -DMODE16 -fno-jump-tables
28CFLAGS16 = $(CFLAGS16INC) -g
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050029
Kevin O'Connor44c631d2008-03-02 11:24:36 -050030TABLETMP=$(addprefix $(OUT), $(patsubst %.c,%.16.s,$(TABLESRC)))
31all: $(OUT) $(OUT)rom.bin $(TABLETMP)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050032
33# Run with "make V=1" to see the actual compile commands
34ifdef V
35Q=
36else
37Q=@
38endif
39
40.PHONY : all FORCE
41
42vpath %.c src
43vpath %.S src
44
45################ Build rules
Kevin O'Connor410680b2008-03-02 20:48:35 -050046
47# Do a whole file compile - two methods are supported. The first
48# involves including all the content textually via #include
49# directives. The second method uses gcc's "-combine" option.
50ifdef AVOIDCOMBINE
51DEPHACK=
52define whole-compile
53@echo " Compiling whole program $3"
54$(Q)/bin/echo -e '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
55$(Q)$(CC) $1 -c $3.tmp.c -o $3
56endef
57else
58# Ugly way to get gcc to generate .d files correctly.
59DEPHACK=-combine src/null.c
60define whole-compile
61@echo " Compiling whole program $3"
62$(Q)$(CC) $1 -combine -c $2 -o $3
63endef
64endif
65
66
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050067$(OUT)%.proc.16.s: $(OUT)%.16.s
68 @echo " Moving data sections to text in $<"
Kevin O'Connord5f1e842008-02-28 20:01:11 -050069 $(Q)sed 's/\t\.section\t\.rodata.*// ; s/\t\.data//' < $< > $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050070
71$(OUT)%.16.s: %.c
72 @echo " Generating assembler for $<"
Kevin O'Connor410680b2008-03-02 20:48:35 -050073 $(Q)$(CC) $(CFLAGS16INC) $(DEPHACK) -S -c $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050074
75$(OUT)%.lds: %.lds.S
76 @echo " Precompiling $<"
77 $(Q)$(CPP) -P $< -o $@
78
79$(OUT)%.bin: $(OUT)%.o
80 @echo " Extracting binary $@"
81 $(Q)objcopy -O binary $< $@
82
83$(OUT)%.offset.auto.h: $(OUT)%.o
84 @echo " Generating symbol offset header $@"
Kevin O'Connor596cf602008-03-01 10:11:55 -050085 $(Q)nm $< | ./tools/defsyms.py $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050086
Kevin O'Connor410680b2008-03-02 20:48:35 -050087$(OUT)blob.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050088
Kevin O'Connor44c631d2008-03-02 11:24:36 -050089TABLEASM=$(addprefix $(OUT), $(patsubst %.c,%.proc.16.s,$(TABLESRC)))
90$(OUT)romlayout16.o: romlayout.S $(OUT)blob.proc.16.s $(TABLEASM)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050091 @echo " Generating 16bit layout of $@"
92 $(Q)$(CC) $(CFLAGS16) -c $< -o $@
93
94$(OUT)rom16.o: $(OUT)romlayout16.o
95 @echo " Linking $@"
Kevin O'Connorbdce35f2008-02-26 21:33:14 -050096 $(Q)ld -melf_i386 -e post16 -Ttext 0 $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050097
98$(OUT)rom16.bin: $(OUT)rom16.o
99 @echo " Extracting binary $@"
100 $(Q)objcopy -O binary $< $@
101
Kevin O'Connor47baa3c2008-03-08 13:17:16 -0500102$(OUT)romlayout32.o: $(OUT)rom16.offset.auto.h ; $(call whole-compile, $(CFLAGS), $(addprefix src/, $(SRC32)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500103
104$(OUT)rom32.o: $(OUT)romlayout32.o $(OUT)rombios32.lds
105 @echo " Linking $@"
106 $(Q)ld -T $(OUT)rombios32.lds $< -o $@
107
108$(OUT)rom.bin: $(OUT)rom16.bin $(OUT)rom32.bin $(OUT)rom16.offset.auto.h $(OUT)rom32.offset.auto.h
109 @echo " Building $@"
110 $(Q)./tools/buildrom.py
111
112####### Generic rules
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500113clean:
114 rm -rf $(OUT)
115
116$(OUT):
117 mkdir $@
118
119-include $(OUT)*.d