about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-09 23:15:53 +0000
committerJames Booth <boothj5@gmail.com>2012-02-09 23:15:53 +0000
commita7df149ee901310ad8ac89fa2ddbd52f9c8d9e70 (patch)
tree5c150f4243cdad7be3105b3ac0238bd55189d335 /Makefile
parentdbfb1551d6ec1fd7efdd2b62117c9dae49cc68ce (diff)
downloadprofani-tty-a7df149ee901310ad8ac89fa2ddbd52f9c8d9e70.tar.gz
Pulled out command module
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 91e90388..dfcef035 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ WARNS = -Werror -Wall -Wextra -Wno-unused-parameter -Wno-unused-but-set-variable
 LIBS = -lxml2 -lssl -lresolv -lncurses -lstrophe
 CFLAGS = -O3 $(WARNS) $(LIBS)
 OBJS = log.o windows.o title_bar.o input_bar.o input_win.o jabber.o \
-       profanity.o util.o main.o
+       profanity.o util.o command.o main.o
 
 profanity: $(OBJS)
 	$(CC) -o profanity $(OBJS) $(LIBS)
@@ -14,8 +14,9 @@ title_bar.o: windows.h
 input_bar.o: windows.h
 input_win.o: windows.h
 jabber.o: jabber.h log.h windows.h
-profanity.o: log.h windows.h jabber.h
+profanity.o: log.h windows.h jabber.h command.h
 util.o: util.h
+command.o: command.h
 main.o: log.h windows.h profanity.h
 
 .PHONY: clean