about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-03-08 00:46:24 +0000
committerJames Booth <boothj5@gmail.com>2012-03-08 00:46:24 +0000
commit78bd151c486626f79ea7dcb9189591d121e822b6 (patch)
treea014d2b6587579380c7b0300fe54c10a14b7dc2f /Makefile
parent03b0c018491b7b49343c1a7c260b3a725b8a659e (diff)
downloadprofani-tty-78bd151c486626f79ea7dcb9189591d121e822b6.tar.gz
Added basic online list
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e6304e78..7102b0be 100644
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,8 @@ TESTLIB = -L ~/lib -l headunit
 CPPLIB = -lstdc++
 CFLAGS = -I ~/include -O3 $(WARNS) $(LIBS)
 OBJS = log.o windows.o title_bar.o status_bar.o input_win.o jabber.o \
-       profanity.o util.o command.o history.o main.o
-TESTOBJS = test_history.o history.o
+       profanity.o util.o command.o history.o contact_list.o main.o
+TESTOBJS = test_history.o history.o test_contact_list.o contact_list.o
 
 profanity: $(OBJS)
 	$(CC) -o profanity $(OBJS) $(LIBS)
@@ -16,14 +16,16 @@ windows.o: windows.h util.h
 title_bar.o: windows.h
 status_bar.o: windows.h util.h
 input_win.o: windows.h
-jabber.o: jabber.h log.h windows.h
+jabber.o: jabber.h log.h windows.h contact_list.h
 profanity.o: log.h windows.h jabber.h command.h history.h
 util.o: util.h
-command.o: command.h util.h history.h
+command.o: command.h util.h history.h contact_list.h
 history.o: history.h
+contact_list.o: contact_list.h
 main.o: profanity.h
 
 test_history.o: history.h
+test_contact_list.o: contact_list.h
 
 testsuite: testsuite.h $(TESTOBJS)
 	$(CC) $(CFLAGS) $(CPPLIB) testsuite.c $(TESTOBJS) -o testsuite $(TESTLIB)