about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-05-01 00:24:31 +0100
committerJames Booth <boothj5@gmail.com>2012-05-01 00:24:31 +0100
commit1730372e00a7469a05c7535c68dbfab83f8af0b4 (patch)
tree9278455cd79141634465863bbcfd0d0595b232ad /Makefile
parent4531aebd291186e9dd49fb2ec1f1b9b96a4ed23f (diff)
downloadprofani-tty-1730372e00a7469a05c7535c68dbfab83f8af0b4.tar.gz
Bash style history
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index be25a2aa..61210e29 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ CFLAGS = -I ~/include -O3 $(WARNS) $(LIBS) `pkg-config --cflags glib-2.0`
 OBJS = log.o windows.o title_bar.o status_bar.o input_win.o jabber.o \
        profanity.o util.o command.o history.o contact_list.o prof_history.o \
 	   main.o
-TESTOBJS = test_history.o history.o test_contact_list.o contact_list.o \
+TESTOBJS = test_contact_list.o contact_list.o \
 	       test_util.o test_prof_history.o prof_history.o util.o
 
 profanity: $(OBJS)
@@ -20,15 +20,14 @@ 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 contact_list.h
-profanity.o: log.h windows.h jabber.h command.h history.h
+profanity.o: log.h windows.h jabber.h command.h
 util.o: util.h
 command.o: command.h util.h history.h contact_list.h
-history.o: history.h
+history.o: history.h prof_history.h
 contact_list.o: contact_list.h
 prof_history.o: prof_history.h
 main.o: profanity.h
 
-test_history.o: history.h
 test_contact_list.o: contact_list.h
 test_util.o: util.h
 test_prof_history.o: prof_history.h