Thumbnail

rani/cscroll.git

Clone URL: https://git.buni.party/rani/cscroll.git

commit 5dec5e2344f4606c1564c590ff904ab014b8f63a Author: Raniconduh <clagv.randomgames@gmail.com> Date: Thu Jun 17 20:08:03 2021 +0000 Added debug target diff --git a/Makefile b/Makefile index 08d223e..5d063ce 100644 --- a/Makefile +++ b/Makefile @@ -611 +611 @@ LIBS = -lncurses    all: cscroll   -cscroll: +cscroll: $(SOURCES)   cc -o $(DEST) $(SOURCES) $(CFLAGS) $(LIBS)   -debug: - cc -o $(DEST) $(SOURCES) $(CFLAGS) $(LIBS) -g +debug: $(SOURCES) + cc -DDEBUG -o $(DEST) $(SOURCES) $(CFLAGS) $(LIBS) -g    clean:   $(RM) $(DEST)