blob: c465120b23225f411c7cf5aaa67e7cdf7edaaaa3 [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'Connore6eb3f52008-04-13 17:37:41 -040011SRCBOTH=output.c util.c floppy.c ata.c kbd.c pci.c boot.c serial.c clock.c
12SRC16=$(SRCBOTH) disk.c system.c mouse.c cdrom.c apm.c pcibios.c
Kevin O'Connorba2d0df2008-04-13 16:59:03 -040013SRC32=$(SRCBOTH) post.c rombios32.c post_menu.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'Connorba2d0df2008-04-13 16:59:03 -040020COMMONCFLAGS = -Wall -Os -MD -m32 -march=i386 -mregparm=3 \
21 -mpreferred-stack-boundary=2 -mrtd \
Kevin O'Connorbc28a2b2008-03-11 19:32:38 -040022 -ffreestanding -fwhole-program -fomit-frame-pointer \
23 -fno-delete-null-pointer-checks
Kevin O'Connor786502d2008-02-27 10:41:41 -050024COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
25COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
26COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
27
28CFLAGS = $(COMMONCFLAGS) -g
Kevin O'Connora2d16922008-05-12 23:44:57 -040029CFLAGS16INC = $(COMMONCFLAGS) -DMODE16 -fno-jump-tables -fno-defer-pop \
30 $(call cc-option,$(CC),--param large-stack-frame=8,)
Kevin O'Connor410680b2008-03-02 20:48:35 -050031CFLAGS16 = $(CFLAGS16INC) -g
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050032
Kevin O'Connor44c631d2008-03-02 11:24:36 -050033TABLETMP=$(addprefix $(OUT), $(patsubst %.c,%.16.s,$(TABLESRC)))
Kevin O'Connor59fead62008-05-10 15:49:20 -040034all: $(OUT) $(OUT)bios.bin $(TABLETMP)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050035
36# Run with "make V=1" to see the actual compile commands
37ifdef V
38Q=
39else
40Q=@
41endif
42
43.PHONY : all FORCE
44
45vpath %.c src
46vpath %.S src
47
48################ Build rules
Kevin O'Connor410680b2008-03-02 20:48:35 -050049
50# Do a whole file compile - two methods are supported. The first
51# involves including all the content textually via #include
52# directives. The second method uses gcc's "-combine" option.
53ifdef AVOIDCOMBINE
54DEPHACK=
55define whole-compile
56@echo " Compiling whole program $3"
57$(Q)/bin/echo -e '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
58$(Q)$(CC) $1 -c $3.tmp.c -o $3
59endef
60else
61# Ugly way to get gcc to generate .d files correctly.
62DEPHACK=-combine src/null.c
63define whole-compile
64@echo " Compiling whole program $3"
65$(Q)$(CC) $1 -combine -c $2 -o $3
66endef
67endif
68
69
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050070$(OUT)%.proc.16.s: $(OUT)%.16.s
71 @echo " Moving data sections to text in $<"
Kevin O'Connord5f1e842008-02-28 20:01:11 -050072 $(Q)sed 's/\t\.section\t\.rodata.*// ; s/\t\.data//' < $< > $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050073
74$(OUT)%.16.s: %.c
75 @echo " Generating assembler for $<"
Kevin O'Connor410680b2008-03-02 20:48:35 -050076 $(Q)$(CC) $(CFLAGS16INC) $(DEPHACK) -S -c $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050077
78$(OUT)%.lds: %.lds.S
79 @echo " Precompiling $<"
80 $(Q)$(CPP) -P $< -o $@
81
82$(OUT)%.bin: $(OUT)%.o
83 @echo " Extracting binary $@"
84 $(Q)objcopy -O binary $< $@
85
86$(OUT)%.offset.auto.h: $(OUT)%.o
87 @echo " Generating symbol offset header $@"
Kevin O'Connor596cf602008-03-01 10:11:55 -050088 $(Q)nm $< | ./tools/defsyms.py $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050089
Kevin O'Connor410680b2008-03-02 20:48:35 -050090$(OUT)blob.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050091
Kevin O'Connor44c631d2008-03-02 11:24:36 -050092TABLEASM=$(addprefix $(OUT), $(patsubst %.c,%.proc.16.s,$(TABLESRC)))
Kevin O'Connor74534532008-05-12 18:28:58 -040093$(OUT)romlayout16.o: romlayout.S $(OUT)blob.16.s $(TABLEASM)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050094 @echo " Generating 16bit layout of $@"
95 $(Q)$(CC) $(CFLAGS16) -c $< -o $@
96
Kevin O'Connor74534532008-05-12 18:28:58 -040097$(OUT)rom16.o: $(OUT)romlayout16.o $(OUT)rombios16.lds
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050098 @echo " Linking $@"
Kevin O'Connor74534532008-05-12 18:28:58 -040099 $(Q)ld -T $(OUT)rombios16.lds $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500100
Kevin O'Connor47baa3c2008-03-08 13:17:16 -0500101$(OUT)romlayout32.o: $(OUT)rom16.offset.auto.h ; $(call whole-compile, $(CFLAGS), $(addprefix src/, $(SRC32)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500102
103$(OUT)rom32.o: $(OUT)romlayout32.o $(OUT)rombios32.lds
104 @echo " Linking $@"
105 $(Q)ld -T $(OUT)rombios32.lds $< -o $@
106
Kevin O'Connor59fead62008-05-10 15:49:20 -0400107$(OUT)bios.bin: $(OUT)rom16.bin $(OUT)rom32.bin $(OUT)rom16.offset.auto.h $(OUT)rom32.offset.auto.h
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500108 @echo " Building $@"
109 $(Q)./tools/buildrom.py
110
111####### Generic rules
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500112clean:
113 rm -rf $(OUT)
114
115$(OUT):
116 mkdir $@
117
118-include $(OUT)*.d