From: Federico klez Culloca Date: Sat, 13 Jun 2026 18:57:59 +0000 (+0200) Subject: added optional static analysis check; explicitly set C23 standard X-Git-Url: https://git.klezlab.it/?a=commitdiff_plain;h=19e460445d3f9cbeea924a6951f59c743f33a1ec;p=klez%2Fparrotsay-lite.git added optional static analysis check; explicitly set C23 standard --- 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