From 8767711ec637b9f8a6aa6560e2bf338de1e1b77f Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 16 Sep 2026 16:53:03 +0300 Subject: add clean rule to makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5e0699e..1cfd925 100644 --- a/Makefile +++ b/Makefile @@ -2,3 +2,7 @@ all: fwdscript fwdscript: src/fwdscript.c $(CC) -Ideps/conts/include -Wall -Wextra -O0 -g $< -o $@ + +.PHONY: clean +clean: + rm -rf fwdscript -- cgit v1.3