diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 526d26fdb2c332532c4ec3b17d60483cd31c028b
parent 4302cc1167b5edaa157a0c3f11b34045ebe8c27d
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Thu, 21 Oct 2021 21:29:45 +0200

add dbg target to Mkfile with dbg symbols

Diffstat:
MMakefile | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -32,6 +32,9 @@ default: $(TARGET) $(TARGET): $(SRC) $(CC) $(SRC) -o $(TARGET) $(CFLAGS) $(LIBS) +debug: $(SRC) + $(CC) $(SRC) -o $(TARGET) $(CFLAGS) -g $(LIBS) + clean: rm -f $(TARGET)