diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/openbios/libopenbios/build.xml | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/openbios/libopenbios/build.xml')
-rw-r--r-- | roms/openbios/libopenbios/build.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/roms/openbios/libopenbios/build.xml b/roms/openbios/libopenbios/build.xml new file mode 100644 index 000000000..0c891101b --- /dev/null +++ b/roms/openbios/libopenbios/build.xml @@ -0,0 +1,32 @@ +<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="prep_load.c" condition="LOADER_PREP"/> + <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> |