diff options
author | June McEnroe <june@causal.agency> | 2018-08-11 15:49:39 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-11 15:49:39 -0400 |
commit | 461bfca37855b68ab7dab1a89d154bd483716840 (patch) | |
tree | 078902e698d862167481b1ce8013204ceebed153 /Makefile | |
parent | Fix isSelf user checking (diff) | |
download | catgirl-461bfca37855b68ab7dab1a89d154bd483716840.tar.gz catgirl-461bfca37855b68ab7dab1a89d154bd483716840.zip |
Add term.c for extra terminal features
Look at the cute little state machine!
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index bf7b011..f9c903e 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CFLAGS += -Wall -Wextra -Wpedantic CFLAGS += -I/usr/local/include -I/usr/local/opt/libressl/include LDFLAGS += -L/usr/local/lib -L/usr/local/opt/libressl/lib LDLIBS = -lcursesw -ltls -OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o tag.o ui.o url.o +OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o tag.o term.o ui.o url.o all: tags chat |