aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware/rombios/32bit/Makefile
blob: e5d1cbcd69b16333705fb2d2d9cc6236b546a11b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
XEN_ROOT = $(CURDIR)/../../../..
include $(XEN_ROOT)/tools/firmware/Rules.mk

TARGET = 32bitbios_flat.h

CFLAGS += $(CFLAGS_xeninclude) -I..

SUBDIRS = tcgbios

.PHONY: all
all: subdirs-all
	$(MAKE) $(TARGET)

.PHONY: clean
clean: subdirs-clean
	rm -rf *.o $(TARGET) $(DEPS)

$(TARGET): 32bitbios_all.o
	sh mkhex highbios_array 32bitbios_all.o > $@

32bitbios_all.o: 32bitbios.o tcgbios/tcgbiosext.o util.o pmm.o
	$(LD) $(LDFLAGS_DIRECT) -s -r $^ -o 32bitbios_all.o
	@nm 32bitbios_all.o |                                \
	  egrep '^ +U ' >/dev/null && {                      \
	    echo "There are undefined symbols in the BIOS:"; \
	    nm -u 32bitbios_all.o;                           \
	    exit 11;                                         \
	  } || :

-include $(DEPS)