From 5edfd1e763619c5f474aeaab7d95d95d922402f4 Mon Sep 17 00:00:00 2001 From: Thomas Doczkal Date: Sun, 28 Apr 2024 21:42:26 +0200 Subject: [PATCH] add option clean to Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) 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