From 19e460445d3f9cbeea924a6951f59c743f33a1ec Mon Sep 17 00:00:00 2001 From: Federico klez Culloca Date: Sat, 13 Jun 2026 20:57:59 +0200 Subject: [PATCH] added optional static analysis check; explicitly set C23 standard --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 456b512..ac9256f 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,10 @@ parrotsay : parrotsay.o cc -o parrotsay parrotsay.o parrotsay.o : parrotsay.c - cc -c parrotsay.c + cc -c parrotsay.c -std=c23 clean : rm parrotsay parrotsay.o + +check : parrotsay.c + cppcheck parrotsay.c --std=c23 --check-level=exhaustive -- 2.47.3