diff options
author | June McEnroe <june@causal.agency> | 2018-08-17 21:50:45 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-17 21:50:45 -0400 |
commit | 9469db993c276cba60041c3fd120aabd541530db (patch) | |
tree | 94c214117327e85774761339271ccc1ed33228b2 /Makefile | |
parent | Add UI "heat" for status/messages/pings (diff) | |
download | catgirl-9469db993c276cba60041c3fd120aabd541530db.tar.gz catgirl-9469db993c276cba60041c3fd120aabd541530db.zip |
Add logging
The reason logFmt takes a timestamp as a parameter is to support IRCv3 server-time in the future to accurately log the znc buffer. Hopefully.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Makefile b/Makefile index a1044d3..5f30bb4 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,18 @@ CFLAGS += $(LIBRESSL_PREFIX:%=-I%/include) LDFLAGS += $(LIBRESSL_PREFIX:%=-L%/lib) LDLIBS = -lcursesw -ltls -OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o tag.o term.o ui.o url.o +OBJS += chat.o +OBJS += edit.o +OBJS += handle.o +OBJS += input.o +OBJS += irc.o +OBJS += log.o +OBJS += pls.o +OBJS += tab.o +OBJS += tag.o +OBJS += term.o +OBJS += ui.o +OBJS += url.o all: tags chat |