aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)