about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-05 23:08:15 +0000
committerJames Booth <boothj5@gmail.com>2012-02-05 23:08:15 +0000
commit134e5d17013866e9df81c683197596c0c3cc2bad (patch)
tree8d2e11492e81993a94540d373473c967b37ba9a6 /Makefile
parent129f0fb0ae5991570298b46af75f3e52c719b83d (diff)
downloadprofani-tty-134e5d17013866e9df81c683197596c0c3cc2bad.tar.gz
Split out window functions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 59b5879b..50af9839 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,13 @@ CC = gcc
 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 profanity.o
+OBJS = log.o windows.o profanity.o
 
 profanity: $(OBJS)
 	$(CC) -o profanity $(OBJS) $(LIBS)
 
 log.o: log.h
+windows.o: windows.h
 profanity.o: log.h
 
 .PHONY: clean