diff options
author | fishsoupisgood <github@madingley.org> | 2019-04-29 01:17:54 +0100 |
---|---|---|
committer | fishsoupisgood <github@madingley.org> | 2019-05-27 03:43:43 +0100 |
commit | 3f2546b2ef55b661fd8dd69682b38992225e86f6 (patch) | |
tree | 65ca85f13617aee1dce474596800950f266a456c /roms/openbios/libopenbios/build.xml | |
download | qemu-master.tar.gz qemu-master.tar.bz2 qemu-master.zip |
Diffstat (limited to 'roms/openbios/libopenbios/build.xml')
-rw-r--r-- | roms/openbios/libopenbios/build.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/roms/openbios/libopenbios/build.xml b/roms/openbios/libopenbios/build.xml new file mode 100644 index 00000000..feb8f6c7 --- /dev/null +++ b/roms/openbios/libopenbios/build.xml @@ -0,0 +1,31 @@ +<build> + + <library name="openbios" type="static" target="target"> + <object source="aout_load.c" condition="LOADER_AOUT"/> + <object source="bindings.c"/> + <object source="bootcode_load.c" condition="LOADER_BOOTCODE"/> + <object source="bootinfo_load.c" condition="LOADER_BOOTINFO"/> + <object source="client.c"/> + <object source="console.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="load.c"/> + <object source="linuxbios_info.c" condition="LINUXBIOS"/> + <object source="ofmem_common.c" condition="OFMEM"/> + <object source="xcoff_load.c" condition="LOADER_XCOFF"/> + <object source="video_common.c"/> + </library> + + <dictionary name="openbios" target="forth"> + <object source="clib.fs"/> + <object source="helpers.fs"/> + </dictionary> + +</build> |