modified: Makefile

master
ketrptr 2024-12-17 10:33:49 +01:00
parent bc53d5bcf3
commit cb6571a0d6
1 changed files with 4 additions and 4 deletions

View File

@ -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)