diff --git a/Makefile b/Makefile index 013ee1c..a9d13ac 100644 --- a/Makefile +++ b/Makefile @@ -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