misc: Fix makefile clean targets
This commit is contained in:
parent
524829370d
commit
960549377b
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue