diff options
author | James Booth <boothj5@gmail.com> | 2012-02-05 23:08:15 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-02-05 23:08:15 +0000 |
commit | 134e5d17013866e9df81c683197596c0c3cc2bad (patch) | |
tree | 8d2e11492e81993a94540d373473c967b37ba9a6 /Makefile | |
parent | 129f0fb0ae5991570298b46af75f3e52c719b83d (diff) | |
download | profani-tty-134e5d17013866e9df81c683197596c0c3cc2bad.tar.gz |
Split out window functions
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
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 |