diff options
author | Mattias Andrée <m@maandree.se> | 2025-02-16 14:23:16 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-02-16 14:23:16 +0100 |
commit | 16e00dd5f26ce342e9562bec08f529d98c23c01c (patch) | |
tree | a8389795475d59653930322e10e9f07025ff1e14 /Makefile | |
parent | interactive-test: add TEST_LIBTERMINPUT_PRINT_STATE (diff) | |
download | libterminput-16e00dd5f26ce342e9562bec08f529d98c23c01c.tar.gz libterminput-16e00dd5f26ce342e9562bec08f529d98c23c01c.tar.bz2 libterminput-16e00dd5f26ce342e9562bec08f529d98c23c01c.tar.xz |
Improve code organisation, documentation, and m code improvement
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r-- | Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -16,10 +16,18 @@ LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR) OBJ =\ - libterminput.o + libterminput_read.o\ + libterminput_is_ready.o\ + libterminput_set_flags.o\ + libterminput_clear_flags.o\ + libterminput_encode_utf8__.o\ + libterminput_check_utf8_char__.o\ + libterminput_utf8_decode__.o\ + libterminput_read_bracketed_paste__.o\ HDR =\ - libterminput.h + libterminput.h\ + common.h TESTS =\ interactive-test\ |