about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-27 01:44:09 +0000
committerJames Booth <boothj5@gmail.com>2012-02-27 01:44:09 +0000
commitb11b88243111a10747d0ba64f05c126abb7a4157 (patch)
treeac6a9fad298940decc36cdccc41af108dd8bc344 /Makefile
parent8f4868593099d852d320c63f8546bd5af44c6023 (diff)
downloadprofani-tty-b11b88243111a10747d0ba64f05c126abb7a4157.tar.gz
Renamed input buffer to history
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 5b73ac8f..3b43cdea 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ WARNS = -Werror -Wall -Wextra -Wno-unused-parameter -Wno-unused-but-set-variable
 LIBS = -lxml2 -lexpat -lssl -lresolv -lncurses -L ~/lib -lstrophe
 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 input_buffer.o main.o
+       profanity.o util.o command.o history.o main.o
 
 profanity: $(OBJS)
 	$(CC) -o profanity $(OBJS) $(LIBS)
@@ -14,10 +14,10 @@ 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
-profanity.o: log.h windows.h jabber.h command.h input_buffer.h
+profanity.o: log.h windows.h jabber.h command.h history.h
 util.o: util.h
-command.o: command.h util.h input_buffer.h
-input_buffer.o: input_buffer.h
+command.o: command.h util.h history.h
+history.o: history.h
 main.o: log.h windows.h profanity.h
 
 .PHONY: clean