diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-05-26 18:30:54 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-06-18 08:56:34 +0200 |
commit | 639869703f3e8b0ce34d83b523ff611e85cfd93b (patch) | |
tree | dc72c59b87a83d02758ae81f979a25e21b226a8b /src/Makefile_Ecore_IMF.am | |
parent | 4f8e15c16c4f68b6fae8708b177ce672daefc59c (diff) |
autotools: REMOVAL!
Get your seatbelt fastend! It is happening! AUTOTOOLS IS GONE NOW!
All praise to meson!
This time the final version, ci has been adjusted, and now does not try
anymore to build a removed buildsystem. However, the scripts in there
need cleaning up.
Differential Revision: https://phab.enlightenment.org/D9027
Diffstat (limited to 'src/Makefile_Ecore_IMF.am')
-rw-r--r-- | src/Makefile_Ecore_IMF.am | 165 |
1 files changed, 0 insertions, 165 deletions
diff --git a/src/Makefile_Ecore_IMF.am b/src/Makefile_Ecore_IMF.am deleted file mode 100644 index ac099c3..0000000 --- a/src/Makefile_Ecore_IMF.am +++ /dev/null | |||
@@ -1,165 +0,0 @@ | |||
1 | |||
2 | ### Library | ||
3 | |||
4 | installed_ecoreimfmainheadersdir = $(includedir)/ecore-imf-@VMAJ@ | ||
5 | dist_installed_ecoreimfmainheaders_DATA = \ | ||
6 | lib/ecore_imf/Ecore_IMF.h | ||
7 | |||
8 | lib_LTLIBRARIES += \ | ||
9 | lib/ecore_imf/libecore_imf.la | ||
10 | |||
11 | lib_ecore_imf_libecore_imf_la_SOURCES = \ | ||
12 | lib/ecore_imf/ecore_imf.c \ | ||
13 | lib/ecore_imf/ecore_imf_context.c \ | ||
14 | lib/ecore_imf/ecore_imf_module.c \ | ||
15 | lib/ecore_imf/ecore_imf_private.h \ | ||
16 | static_libs/buildsystem/buildsystem.h \ | ||
17 | static_libs/buildsystem/buildsystem_autotools.c | ||
18 | |||
19 | lib_ecore_imf_libecore_imf_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | ||
20 | -DPACKAGE_BIN_DIR=\"$(bindir)\" \ | ||
21 | -DPACKAGE_LIB_DIR=\"$(libdir)\" \ | ||
22 | -DPACKAGE_DATA_DIR=\"$(datadir)/ecore_imf\" \ | ||
23 | -DPACKAGE_BUILD_DIR=\"$(abs_top_builddir)\" \ | ||
24 | -DPACKAGE_SRC_DIR=\"$(abs_top_srcdir)\" \ | ||
25 | -DEFL_BUILD \ | ||
26 | @ECORE_IMF_CFLAGS@ | ||
27 | lib_ecore_imf_libecore_imf_la_LIBADD = @ECORE_IMF_LIBS@ | ||
28 | lib_ecore_imf_libecore_imf_la_DEPENDENCIES = @ECORE_IMF_INTERNAL_LIBS@ | ||
29 | lib_ecore_imf_libecore_imf_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ | ||
30 | |||
31 | ### Modules | ||
32 | |||
33 | # Ibus | ||
34 | |||
35 | if BUILD_ECORE_IMF_IBUS | ||
36 | ecoreimfibuspkgdir = $(libdir)/ecore_imf/modules/ibus/$(MODULE_ARCH) | ||
37 | ecoreimfibuspkg_LTLIBRARIES = modules/ecore_imf/ibus/module.la | ||
38 | |||
39 | # Workaround for broken parallel install support in automake (relink issue) | ||
40 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
41 | install_ecoreimfibuspkgLTLIBRARIES = install-ecoreimfibuspkgLTLIBRARIES | ||
42 | $(install_ecoreimfibuspkgLTLIBRARIES): install-libLTLIBRARIES | ||
43 | |||
44 | modules_ecore_imf_ibus_module_la_SOURCES = \ | ||
45 | modules/ecore_imf/ibus/ibus_module.c \ | ||
46 | modules/ecore_imf/ibus/ibus_imcontext.c \ | ||
47 | modules/ecore_imf/ibus/ibus_imcontext.h | ||
48 | modules_ecore_imf_ibus_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | ||
49 | @ECORE_IMF_CFLAGS@ \ | ||
50 | @ECORE_EVAS_CFLAGS@ \ | ||
51 | @ECORE_X_CFLAGS@ \ | ||
52 | @IBUS_CFLAGS@ | ||
53 | modules_ecore_imf_ibus_module_la_LIBADD = \ | ||
54 | @USE_ECORE_IMF_LIBS@ \ | ||
55 | @USE_ECORE_EVAS_LIBS@ \ | ||
56 | @USE_ECORE_X_LIBS@ \ | ||
57 | @IBUS_LIBS@ | ||
58 | modules_ecore_imf_ibus_module_la_DEPENDENCIES = \ | ||
59 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ | ||
60 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
61 | @USE_ECORE_X_INTERNAL_LIBS@ | ||
62 | modules_ecore_imf_ibus_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | ||
63 | modules_ecore_imf_ibus_module_la_LIBTOOLFLAGS = --tag=disable-static | ||
64 | endif | ||
65 | |||
66 | # Scim | ||
67 | |||
68 | if BUILD_ECORE_IMF_SCIM | ||
69 | ecoreimfscimpkgdir = $(libdir)/ecore_imf/modules/scim/$(MODULE_ARCH) | ||
70 | ecoreimfscimpkg_LTLIBRARIES = modules/ecore_imf/scim/module.la | ||
71 | |||
72 | # Workaround for broken parallel install support in automake (relink issue) | ||
73 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
74 | install_ecoreimfscimpkgLTLIBRARIES = install-ecoreimfscimpkgLTLIBRARIES | ||
75 | $(install_ecoreimfscimpkgLTLIBRARIES): install-libLTLIBRARIES | ||
76 | |||
77 | modules_ecore_imf_scim_module_la_SOURCES = \ | ||
78 | modules/ecore_imf/scim/scim_module.cpp \ | ||
79 | modules/ecore_imf/scim/scim_imcontext.cpp \ | ||
80 | modules/ecore_imf/scim/scim_imcontext.h | ||
81 | modules_ecore_imf_scim_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | ||
82 | @ECORE_IMF_CFLAGS@ \ | ||
83 | @ECORE_EVAS_CFLAGS@ \ | ||
84 | @ECORE_X_CFLAGS@ \ | ||
85 | @SCIM_CFLAGS@ | ||
86 | modules_ecore_imf_scim_module_la_LIBADD = \ | ||
87 | @USE_ECORE_IMF_LIBS@ \ | ||
88 | @USE_ECORE_EVAS_LIBS@ \ | ||
89 | @USE_ECORE_X_LIBS@ \ | ||
90 | @SCIM_LIBS@ | ||
91 | modules_ecore_imf_scim_module_la_DEPENDENCIES = \ | ||
92 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ | ||
93 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
94 | @USE_ECORE_X_INTERNAL_LIBS@ | ||
95 | modules_ecore_imf_scim_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | ||
96 | modules_ecore_imf_scim_module_la_LIBTOOLFLAGS = --tag=disable-static | ||
97 | endif | ||
98 | |||
99 | # Xim | ||
100 | |||
101 | if BUILD_ECORE_IMF_XIM | ||
102 | ecoreimfximpkgdir = $(libdir)/ecore_imf/modules/xim/$(MODULE_ARCH) | ||
103 | ecoreimfximpkg_LTLIBRARIES = modules/ecore_imf/xim/module.la | ||
104 | |||
105 | # Workaround for broken parallel install support in automake (relink issue) | ||
106 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
107 | install_ecoreimfximpkgLTLIBRARIES = install-ecoreimfximpkgLTLIBRARIES | ||
108 | $(install_ecoreimfximpkgLTLIBRARIES): install-libLTLIBRARIES | ||
109 | |||
110 | modules_ecore_imf_xim_module_la_SOURCES = \ | ||
111 | modules/ecore_imf/xim/ecore_imf_xim.c | ||
112 | modules_ecore_imf_xim_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | ||
113 | @ECORE_IMF_CFLAGS@ \ | ||
114 | @ECORE_X_CFLAGS@ \ | ||
115 | @ecore_imf_xim_cflags@ | ||
116 | modules_ecore_imf_xim_module_la_LIBADD = \ | ||
117 | @USE_ECORE_IMF_LIBS@ \ | ||
118 | @USE_ECORE_X_LIBS@ \ | ||
119 | @ecore_imf_xim_libs@ | ||
120 | modules_ecore_imf_xim_module_la_DEPENDENCIES = \ | ||
121 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ | ||
122 | @USE_ECORE_X_INTERNAL_LIBS@ | ||
123 | modules_ecore_imf_xim_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | ||
124 | modules_ecore_imf_xim_module_la_LIBTOOLFLAGS = --tag=disable-static | ||
125 | endif | ||
126 | |||
127 | # Wayland | ||
128 | if BUILD_ECORE_IMF_WAYLAND | ||
129 | ecoreimfwaylandpkgdir = $(libdir)/ecore_imf/modules/wayland/$(MODULE_ARCH) | ||
130 | ecoreimfwaylandpkg_LTLIBRARIES = modules/ecore_imf/wayland/module.la | ||
131 | |||
132 | # Workaround for broken parallel install support in automake (relink issue) | ||
133 | # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7328 | ||
134 | install_ecoreimfwaylandpkgLTLIBRARIES = install-ecoreimfwaylandpkgLTLIBRARIES | ||
135 | $(install_ecoreimfwaylandpkgLTLIBRARIES): install-libLTLIBRARIES | ||
136 | |||
137 | modules_ecore_imf_wayland_module_la_SOURCES = \ | ||
138 | modules/ecore_imf/wayland/wayland_module.c \ | ||
139 | modules/ecore_imf/wayland/wayland_imcontext.c \ | ||
140 | modules/ecore_imf/wayland/wayland_imcontext.h | ||
141 | |||
142 | nodist_modules_ecore_imf_wayland_module_la_SOURCES = \ | ||
143 | modules/ecore_imf/wayland/text-input-unstable-v1-client-protocol.h \ | ||
144 | modules/ecore_imf/wayland/text-input-unstable-v1-protocol.c | ||
145 | |||
146 | BUILT_SOURCES += \ | ||
147 | modules/ecore_imf/wayland/text-input-unstable-v1-client-protocol.h \ | ||
148 | modules/ecore_imf/wayland/text-input-unstable-v1-protocol.c | ||
149 | |||
150 | modules_ecore_imf_wayland_module_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | ||
151 | -I$(top_builddir)/src/modules/ecore_imf/wayland \ | ||
152 | @ECORE_IMF_CFLAGS@ \ | ||
153 | @ECORE_EVAS_CFLAGS@ \ | ||
154 | @ECORE_WL2_CFLAGS@ | ||
155 | modules_ecore_imf_wayland_module_la_LIBADD = \ | ||
156 | @USE_ECORE_IMF_LIBS@ \ | ||
157 | @USE_ECORE_EVAS_LIBS@ \ | ||
158 | @USE_ECORE_WL2_LIBS@ | ||
159 | modules_ecore_imf_wayland_module_la_DEPENDENCIES = \ | ||
160 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ | ||
161 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | ||
162 | @USE_ECORE_WL2_INTERNAL_LIBS@ | ||
163 | modules_ecore_imf_wayland_module_la_LDFLAGS = -module @EFL_LTMODULE_FLAGS@ | ||
164 | modules_ecore_imf_wayland_module_la_LIBTOOLFLAGS = --tag=disable-static | ||
165 | endif | ||