diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2012-01-25 14:02:05 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-01-25 14:02:05 -0500 |
commit | a97eca95d0b53255dfacab26984671a4b4109dbc (patch) | |
tree | 9035bfc101a99332297c2d9f231bde2f552f51a0 /clients/Makefile.am | |
parent | bcecca49b875d96e4e6d007ce09a45b2ea301d9d (diff) |
Install terminal as weston-terminal
Diffstat (limited to 'clients/Makefile.am')
-rw-r--r-- | clients/Makefile.am | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/clients/Makefile.am b/clients/Makefile.am index ddc8dac..bf73e40 100644 --- a/clients/Makefile.am +++ b/clients/Makefile.am @@ -1,11 +1,21 @@ -noinst_PROGRAMS = $(clients_programs) \ - $(poppler_programs) \ +bin_PROGRAMS = \ + $(terminal) + +noinst_PROGRAMS = \ + $(clients_programs) \ + $(poppler_programs) \ $(simple_clients_programs) -libexec_PROGRAMS = $(desktop_shell) $(tablet_shell) +libexec_PROGRAMS = \ + $(desktop_shell) \ + $(tablet_shell) if BUILD_SIMPLE_CLIENTS -simple_clients_programs = simple-egl simple-shm simple-touch +simple_clients_programs = \ + simple-egl \ + simple-shm \ + simple-touch + simple_egl_SOURCES = simple-egl.c simple_egl_LDADD = $(SIMPLE_CLIENT_LIBS) -lm @@ -17,10 +27,11 @@ simple_touch_LDADD = $(SIMPLE_CLIENT_LIBS) endif if BUILD_CLIENTS +terminal = weston-terminal + clients_programs = \ flower \ screenshot \ - terminal \ image \ dnd \ smoke \ @@ -54,8 +65,8 @@ flower_LDADD = $(toolkit_libs) screenshot_SOURCES = screenshot.c screenshooter-protocol.c screenshot_LDADD = $(toolkit_libs) -terminal_SOURCES = terminal.c -terminal_LDADD = $(toolkit_libs) -lutil +weston_terminal_SOURCES = terminal.c +weston_terminal_LDADD = $(toolkit_libs) -lutil image_SOURCES = image.c image_LDADD = $(toolkit_libs) |