diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-06-28 15:34:57 +0900 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-06-28 15:34:57 +0900 |
commit | ea9f134df9b83a7c4aa74737055a8a131c65e25d (patch) | |
tree | c270144a3c6df04a6a6c8f311ec69fa96d4bbd08 /src/Makefile.am | |
parent | 29b5f32b2917befa2f866f56857db183be7effe8 (diff) |
Add TUI to project
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 7094734..ba7136b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -13,6 +13,10 @@ noinst_LTLIBRARIES += cli.la cli_la_SOURCES = cli.c cli_la_LDFLAGS = -module -rpath @abs_srcdir@ +noinst_LTLIBRARIES += tui.la +tui_la_SOURCES = tui.c +tui_la_LDFLAGS = -module -rpath @abs_srcdir@ -lncurses + if USE_READLINE_COND cli_la_LDFLAGS += -lreadline else # USE_READLINE_COND |