From 7a05614e2d9eeb5bb70514444263fa8ce6c8fab9 Mon Sep 17 00:00:00 2001 From: Alexandru Date: Mon, 30 Mar 2026 02:08:41 +0300 Subject: [PATCH] Added a debug configuration to the makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 8367c9a..9de3058 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,5 @@ default: cc *.c -o guesser + +debug: + cc *.c -g -o guesser