mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
accordingly. Hence since the loaders are currently written in C, it makes more sense to drop down into C and re-use the same code rather than have a second implementation in Forth. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@726 f158a5a8-5612-0410-a976-696ce0be7e32
29 lines
1018 B
XML
29 lines
1018 B
XML
<build>
|
|
|
|
<library name="openbios" type="static" target="target">
|
|
<object source="aout_load.c" condition="LOADER_AOUT"/>
|
|
<object source="bindings.c"/>
|
|
<object source="bootinfo_load.c" condition="LOADER_BOOTINFO"/>
|
|
<object source="client.c"/>
|
|
<object source="console_common.c"/>
|
|
<object source="elf_info.c" />
|
|
<object source="elf_load.c" condition="LOADER_ELF"/>
|
|
<object source="font_8x8.c" condition="FONT_8X8"/>
|
|
<object source="font_8x16.c" condition="FONT_8X16"/>
|
|
<object source="fcode_load.c" condition="LOADER_FCODE"/>
|
|
<object source="forth_load.c" condition="LOADER_FORTH"/>
|
|
<object source="init.c"/>
|
|
<object source="initprogram.c"/>
|
|
<object source="ipchecksum.c"/>
|
|
<object source="linuxbios_info.c" condition="LINUXBIOS"/>
|
|
<object source="ofmem_common.c" condition="OFMEM"/>
|
|
<object source="xcoff_load.c" condition="LOADER_XCOFF"/>
|
|
</library>
|
|
|
|
<dictionary name="openbios" target="forth">
|
|
<object source="clib.fs"/>
|
|
<object source="helpers.fs"/>
|
|
</dictionary>
|
|
|
|
</build>
|