diff --git a/Makefile b/Makefile index af0619b..638e21f 100644 --- a/Makefile +++ b/Makefile @@ -7,3 +7,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