misc: Fix makefile clean targets

This commit is contained in:
mintsuki 2021-02-20 23:15:01 +01:00
parent 524829370d
commit 960549377b
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ limine_sys.o: limine.bin
$(OBJCOPY) -B i8086 -I binary -O default limine.sys limine_sys.o
clean:
rm -f limine.o limine-install
rm -f limine.o limine_sys.o limine-install
install: all
install -d $(DESTDIR)$(PREFIX)/bin

View File

@ -72,4 +72,4 @@ stage2.elf: $(OBJ)
nasm $< -f elf32 -o $@
clean:
rm -f symlist.gen stage2.map stage2.bin stage2.elf stage3.bin $(OBJ) $(HEADER_DEPS)
rm -f symlist.gen stages.bin stage2.map stage2.bin stage2.elf stage3.bin $(OBJ) $(HEADER_DEPS)