Add .PHONY
This commit is contained in:
parent
cbefa73a90
commit
55a449dc65
3 changed files with 6 additions and 0 deletions
2
Makefile
2
Makefile
|
@ -17,6 +17,8 @@ kernel/kernel.bin:
|
|||
|
||||
|
||||
#----- Other -----
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
cd kernel && make clean
|
||||
rm $(EXEC)
|
||||
|
|
|
@ -10,6 +10,8 @@ $(EXEC): gdt.cpp
|
|||
|
||||
|
||||
#----- Other -----
|
||||
.PHONY:clean
|
||||
|
||||
clean:
|
||||
rm *.o
|
||||
#----------------
|
||||
|
|
|
@ -26,6 +26,8 @@ GDT/gdt.o:
|
|||
|
||||
|
||||
#----- Other -----
|
||||
.PHONY:clean
|
||||
|
||||
clean:
|
||||
cd ./GDT/ && make clean
|
||||
rm ./*.o
|
||||
|
|
Loading…
Add table
Reference in a new issue