1#
2# Makefile for the 'bios' sub-component of DAL.
3# It provides the parsing and executing controls for atom bios image.
4
5BIOS = bios_parser.o bios_parser_interface.o  bios_parser_helper.o command_table.o command_table_helper.o
6
7AMD_DAL_BIOS = $(addprefix $(AMDDALPATH)/dc/bios/,$(BIOS))
8
9AMD_DISPLAY_FILES += $(AMD_DAL_BIOS)
10
11###############################################################################
12# DCE 8x
13###############################################################################
14# All DCE8.x are derived from DCE8.0, so 8.0 MUST be defined if ANY of
15# DCE8.x is compiled.
16AMD_DISPLAY_FILES += $(AMDDALPATH)/dc/bios/dce80/command_table_helper_dce80.o
17
18###############################################################################
19# DCE 11x
20###############################################################################
21AMD_DISPLAY_FILES += $(AMDDALPATH)/dc/bios/dce110/command_table_helper_dce110.o
22
23ccflags-y += -DLATEST_ATOM_BIOS_SUPPORT
24AMD_DISPLAY_FILES += $(AMDDALPATH)/dc/bios/dce112/command_table_helper_dce112.o
25