diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-07-17 11:10:53 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2014-07-18 12:53:41 +0200 |
commit | 5ab887e98d80ffaf05a97abe4cdc1553a85f0637 (patch) | |
tree | df14266f2f3b73685b749da519731328bd099a25 /Makefile.am | |
parent | e432f9e8f999fe75d79a2499035c8e84b04a8b1a (diff) |
terminal: add systemd-subterm example
The systemd-subterm example is a stacked terminal that shows how to
use sd-term. Instead of rendering images and displaying it via X11/etc.,
it uses its parent terminal to display the page (terminal-emulator inside
a terminal-emulator) (like GNU-screen and friends do).
This is only for testing and not installed system-wide!
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 0de60148d8..0615f663ce 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2849,6 +2849,17 @@ libsystemd_terminal_la_LIBADD = \ libsystemd-internal.la \ libsystemd-shared.la +noinst_PROGRAMS += \ + systemd-subterm + +systemd_subterm_SOURCES = \ + src/libsystemd-terminal/subterm.c + +systemd_subterm_LDADD = \ + libsystemd-terminal.la \ + libsystemd-internal.la \ + libsystemd-shared.la + test_term_page_SOURCES = \ src/libsystemd-terminal/test-term-page.c |