Makefile fixes
This commit is contained in:
parent
edd4a8de60
commit
6d756cf78b
5
Makefile
5
Makefile
|
@ -44,7 +44,7 @@ endif
|
|||
bootloader-clean: stage23-clean decompressor-clean
|
||||
|
||||
distclean: clean bootloader-clean test-clean
|
||||
rm -rf bin stivale toolchain
|
||||
rm -rf bin stivale toolchain ovmf gnu-efi
|
||||
|
||||
stivale:
|
||||
git clone https://github.com/stivale/stivale.git
|
||||
|
@ -75,8 +75,7 @@ gnu-efi:
|
|||
|
||||
ovmf:
|
||||
mkdir -p ovmf
|
||||
wget https://efi.akeo.ie/OVMF/OVMF-X64.zip
|
||||
cd ovmf && 7z x OVMF-X64.zip
|
||||
cd ovmf && wget https://efi.akeo.ie/OVMF/OVMF-X64.zip && 7z x OVMF-X64.zip
|
||||
|
||||
test.hdd:
|
||||
rm -f test.hdd
|
||||
|
|
|
@ -139,4 +139,4 @@ else ifeq ($(TARGET), uefi)
|
|||
endif
|
||||
|
||||
clean:
|
||||
rm -f limine.elf limine_nomap.elf limine_stage2only.elf font.o limine.map.o limine.sys stage2.bin stage2.bin.gz $(OBJ) $(HEADER_DEPS)
|
||||
rm -f limine.elf limine_nomap.elf limine_stage2only.elf font.o limine.map.o limine.sys stage2.bin stage2.bin.gz BOOTX64.EFI $(OBJ) $(HEADER_DEPS)
|
||||
|
|
Loading…
Reference in New Issue