From cb6571a0d62a221641145fa73735079a2a8695a6 Mon Sep 17 00:00:00 2001 From: ketrptr Date: Tue, 17 Dec 2024 10:33:49 +0100 Subject: [PATCH] modified: Makefile --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ae0d0b0..4b1fa9e 100644 --- a/Makefile +++ b/Makefile @@ -14,14 +14,14 @@ CONFIG=src/config.h #config file ALLF=$(UIF) $(PLF) $(DBF) $(LLST) -all: debug release +all: debug #targets debug: test ui planner db iCal llist - gcc test.o ui.o planner.o db.o iCal.o llist.o -o debugOut + gcc -DDEBUG test.o ui.o planner.o db.o iCal.o llist.o -o debugOut -release: $(ALLF) - gcc -DRELEASE -fPIC -shared -o libStudyPlanner.so $(ALLF) +# release: $(ALLF) + # gcc -DRELEASE -fPIC -shared -o $(ALLF) # config: $(CONFIG)