1
0
Fork 0
mirror of https://gitlab.com/bztsrc/bootboot.git synced 2023-02-13 20:54:32 -05:00

Don't care if there's nothing to delete

This commit is contained in:
bzt 2021-01-17 22:30:50 +01:00
parent 1128072863
commit d64cfbe3e8
2 changed files with 2 additions and 2 deletions

View file

@ -49,4 +49,4 @@ mykernel.aarch64.elf: kernel.c
aarch64-elf-readelf -hls mykernel.aarch64.elf >mykernel.aarch64.txt
clean:
rm *.o *.elf *.txt
rm *.o *.elf *.txt || true

View file

@ -49,4 +49,4 @@ mykernel.aarch64.elf: kernel.cpp
aarch64-elf-readelf -hls mykernel.aarch64.elf >mykernel.aarch64.txt
clean:
rm *.o *.elf *.txt
rm *.o *.elf *.txt || true