Merge remote-tracking branch 'Lynx/master'

This commit is contained in:
EnderIce2
2024-11-20 05:02:27 +02:00
28 changed files with 7101 additions and 1 deletions

14
Lynx/Makefile Normal file
View File

@ -0,0 +1,14 @@
prepare:
make -C BIOS prepare
make -C UEFI prepare
build:
make -C BIOS build
make -C UEFI build
cp BIOS/loader.bin .
cp UEFI/efi-loader.bin .
clean:
make -C BIOS clean
make -C UEFI clean
rm -f loader.bin efi-loader.bin