aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-02-05 19:16:42 +0100
committerache <ache@ache.one>2019-02-05 19:16:42 +0100
commit446e47937737980f6757134b77267bd83a69f066 (patch)
tree5324351635695458782522fb03f31a6ed7a7ea45 /Makefile
parentSearch function (diff)
Add config file management
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e69a058..71a45c0 100644
--- a/Makefile
+++ b/Makefile
@@ -4,13 +4,14 @@ CC=gcc
PROG=mesms
LIBS=-lcurses -lreadline
HEADERS=$(wildcard *.h)
-FILES=readline.c wind.c contactList.c basic_curses.c contactWind.c sms.c messageWind.c
+FILES=readline.c wind.c contactList.c basic_curses.c contactWind.c sms.c messageWind.c readConfig.c
OBJ_FILES := $(FILES:.c=.o)
CFLAGS+=-std=gnu99
all: $(PROG)
+debug: clean
debug: CFLAGS += -DDEBUG -g
debug: $(PROG)