diff options
author | C. McEnroe | 2020-09-01 20:35:17 -0400 |
---|---|---|
committer | C. McEnroe | 2020-09-01 20:36:50 -0400 |
commit | ded2b6afb602719a52c3b4934cec5327dc8d3d1a (patch) | |
tree | 6d4bda91296aebd66bdd53351a4854a5921fd648 /Makefile | |
parent | a98fd70aacc34045d9e1ea8e2d3562a4357fdd16 (diff) |
Factor buffer out of ui
In preparation for doing line wrapping outside of ncurses.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 08e90ab..2c3061d 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,7 @@ LDLIBS = -lncursesw -ltls -include config.mk +OBJS += buffer.o OBJS += chat.o OBJS += command.o OBJS += complete.o |