diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 43 |
1 files changed, 21 insertions, 22 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 9401246..4031d79 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -10,8 +10,8 @@ includedir = /usr/include/ico-uxf-weston-plugin libico_uxf_weston_plugin_la_LIBADD = -lrt -lm libico_uxf_weston_plugin_la_LDFLAGS = -version-info 0:5:0 libico_uxf_weston_plugin_la_SOURCES = \ - ico_ivi_shell-protocol.c \ - ico_window_mgr-protocol.c \ + ico_ivi_shell-protocol.c \ + ico_window_mgr-protocol.c \ ico_input_mgr-protocol.c AM_CPPFLAGS = \ @@ -41,59 +41,58 @@ module_LTLIBRARIES = \ # Weston Plugin Loader ico_plugin_loader = ico_plugin_loader.la ico_plugin_loader_la_LDFLAGS = -module -avoid-version -ico_plugin_loader_la_LIBADD = $(COMPOSITOR_LIBS) -ico_plugin_loader_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(COMPOSITOR_CFLAGS) +ico_plugin_loader_la_LIBADD = $(PLUGIN_LIBS) +ico_plugin_loader_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(PLUGIN_CFLAGS) ico_plugin_loader_la_SOURCES = \ - ico_plugin_loader.c ../shared/config-parser.c + ico_plugin_loader.c # IVI Common Functions ico_ivi_common = ico_ivi_common.la ico_ivi_common_la_LDFLAGS = -module -avoid-version -ico_ivi_common_la_LIBADD = $(COMPOSITOR_LIBS) -ico_ivi_common_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(COMPOSITOR_CFLAGS) +ico_ivi_common_la_LIBADD = $(PLUGIN_LIBS) +ico_ivi_common_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(PLUGIN_CFLAGS) ico_ivi_common_la_SOURCES = \ - ico_ivi_common.c ../shared/config-parser.c + ico_ivi_common.c # IVI-Shell ico_ivi_shell = ico_ivi_shell.la ico_ivi_shell_la_LDFLAGS = -module -avoid-version -ico_ivi_shell_la_LIBADD = $(COMPOSITOR_LIBS) -ico_ivi_shell_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(COMPOSITOR_CFLAGS) +ico_ivi_shell_la_LIBADD = $(PLUGIN_LIBS) +ico_ivi_shell_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(PLUGIN_CFLAGS) ico_ivi_shell_la_SOURCES = \ - ico_ivi_shell.c \ - ../shared/config-parser.c \ + ico_ivi_shell.c \ ico_ivi_shell-protocol.c \ ico_ivi_shell-server-protocol.h # Multi Window Manager ico_window_mgr = ico_window_mgr.la ico_window_mgr_la_LDFLAGS = -module -avoid-version -ico_window_mgr_la_LIBADD = $(COMPOSITOR_LIBS) $(AUL_LIBS) -ico_window_mgr_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(COMPOSITOR_CFLAGS) +ico_window_mgr_la_LIBADD = $(PLUGIN_LIBS) $(AUL_LIBS) +ico_window_mgr_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(PLUGIN_CFLAGS) ico_window_mgr_la_SOURCES = \ - ico_window_mgr.c \ + ico_window_mgr.c \ ico_window_mgr-protocol.c \ ico_window_mgr-server-protocol.h # Multi Input Manager ico_input_mgr = ico_input_mgr.la ico_input_mgr_la_LDFLAGS = -module -avoid-version -ico_input_mgr_la_LIBADD = $(COMPOSITOR_LIBS) -ico_input_mgr_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(COMPOSITOR_CFLAGS) +ico_input_mgr_la_LIBADD = $(PLUGIN_LIBS) +ico_input_mgr_la_CFLAGS = $(GCC_CFLAGS) $(EXT_CFLAGS) $(PLUGIN_CFLAGS) ico_input_mgr_la_SOURCES = \ - ico_input_mgr.c \ + ico_input_mgr.c \ ico_input_mgr-protocol.c \ ico_input_mgr-server-protocol.h # Wayland protocol(Build by wayland-scanner) -BUILT_SOURCES = \ - ico_ivi_shell-protocol.c \ +BUILT_SOURCES = \ + ico_ivi_shell-protocol.c \ ico_ivi_shell-server-protocol.h \ ico_ivi_shell-client-protocol.h \ - ico_window_mgr-protocol.c \ + ico_window_mgr-protocol.c \ ico_window_mgr-server-protocol.h \ ico_window_mgr-client-protocol.h \ - ico_input_mgr-protocol.c \ + ico_input_mgr-protocol.c \ ico_input_mgr-server-protocol.h \ ico_input_mgr-client-protocol.h \ git-version.h |