From 50b98bf7af19b4542aa4c00cf5e7cae50b55fee0 Mon Sep 17 00:00:00 2001 From: Nero <41307858+nero@users.noreply.github.com> Date: Sun, 1 Jan 2023 21:41:22 +0000 Subject: [PATCH] Fix elf files not being affected my make clean --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 966fec5..221b9ac 100644 --- a/Makefile +++ b/Makefile @@ -36,8 +36,7 @@ fd%.img: $(DISTFILES) $(SYS) $(SYS) $@ $(KERNEL) clean: - rm -f *.com *.bs *.0 *.lst *.img *.bin *.hex - rm -f host/*.elf + rm -f *.com *.bs *.0 *.lst *.img *.bin *.hex *.elf qemu: fd$(FLOPPY).img qemu-system-i386 $(shell test -w /dev/kvm && echo --enable-kvm) $(shell test -n "$DISPLAY" || echo --display curses) -boot a -drive file=fd$(FLOPPY).img,format=raw,index=0,if=floppy