Added make clean

This commit is contained in:
alecs 2021-05-14 19:42:06 +02:00
parent b89ed2b3d0
commit 107036348d
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,10 @@ all:
as -o $(FILE).o $(FILE).s
ld -o $(FILE) $(FILE).o
clean:
rm $(FILE).o
rm $(FILE)
debug:
as -g -o $(FILE).o $(FILE).s
ld -o $(FILE) $(FILE).o