diff --git a/Makefile b/Makefile index 8e42fa8..09ce9b5 100644 --- a/Makefile +++ b/Makefile @@ -3,3 +3,6 @@ helloworld: src/main.o src/main.o: src/main.c gcc -c src/main.c -o src/main.o + +clean: + rm src/main.o helloworld