From f79c6988ee9cf886c89b6bccbe83a24a1599cad4 Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Thu, 21 May 2020 23:36:47 +0200 Subject: [PATCH] small makefile changes --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 1ae9683..559ff91 100644 --- a/makefile +++ b/makefile @@ -1,9 +1,9 @@ CC = gcc -CFLAGS = -Wall -Werror -pedantic -O2 +CFLAGS = -Wall -pedantic -O2 bmon: bmon.o -debug: +dbg: gcc $(CFLAGS) -g bmon.c -o bmon-dbg bmon.o: bmon.c