diff options
author | June McEnroe <june@causal.agency> | 2018-08-08 16:59:26 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-08 16:59:26 -0400 |
commit | eac0f83efa3d6b1db2715c21d60b170a546ebc0a (patch) | |
tree | c8db1326e24716e29d3c9b06e42527178d030fa1 /Makefile | |
parent | Set log marker on FocusOut event (diff) | |
download | catgirl-eac0f83efa3d6b1db2715c21d60b170a546ebc0a.tar.gz catgirl-eac0f83efa3d6b1db2715c21d60b170a546ebc0a.zip |
Factor out line editing to edit.c
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 38c14bf..de85e55 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CFLAGS += -Wall -Wextra -Wpedantic CFLAGS += -I/usr/local/include LDFLAGS += -L/usr/local/lib LDLIBS = -lcursesw -ltls -OBJS = chat.o handle.o input.o irc.o pls.o tab.o ui.o +OBJS = chat.o edit.o handle.o input.o irc.o pls.o tab.o ui.o all: tags chat |