diff options
Diffstat (limited to '')
-rw-r--r-- | legacy/evas/src/modules/engines/gl_sdl/Makefile.am | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/legacy/evas/src/modules/engines/gl_sdl/Makefile.am b/legacy/evas/src/modules/engines/gl_sdl/Makefile.am deleted file mode 100644 index 86ed306ddf..0000000000 --- a/legacy/evas/src/modules/engines/gl_sdl/Makefile.am +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | |||
2 | MAINTAINERCLEANFILES = Makefile.in | ||
3 | |||
4 | AM_CPPFLAGS = \ | ||
5 | -I. \ | ||
6 | -I$(top_srcdir)/src/lib \ | ||
7 | -I$(top_srcdir)/src/lib/include \ | ||
8 | -I$(top_srcdir)/src/modules/engines/gl_common \ | ||
9 | @FREETYPE_CFLAGS@ \ | ||
10 | @PIXMAN_CFLAGS@ \ | ||
11 | @EVAS_GENERAL_CFLAGS@ \ | ||
12 | @GL_EET_CFLAGS@ \ | ||
13 | @FRIBIDI_CFLAGS@ \ | ||
14 | @evas_engine_gl_sdl_cflags@ | ||
15 | |||
16 | if BUILD_ENGINE_GL_SDL | ||
17 | |||
18 | GL_SDL_SOURCES = \ | ||
19 | evas_engine.c | ||
20 | |||
21 | GL_SDL_LIBADD = @evas_engine_gl_sdl_libs@ $(top_builddir)/src/modules/engines/gl_common/libevas_engine_gl_common.la | ||
22 | |||
23 | |||
24 | includes_HEADERS = Evas_Engine_GL_SDL.h | ||
25 | includesdir = $(includedir)/evas-@VMAJ@ | ||
26 | |||
27 | if !EVAS_STATIC_BUILD_GL_SDL | ||
28 | |||
29 | pkgdir = $(libdir)/evas/modules/engines/gl_sdl/$(MODULE_ARCH) | ||
30 | pkg_LTLIBRARIES = module.la | ||
31 | |||
32 | module_la_SOURCES = $(GL_SDL_SOURCES) | ||
33 | module_la_LIBADD = @EVAS_GENERAL_LIBS@ $(GL_SDL_LIBADD) $(top_builddir)/src/lib/libevas.la @dlopen_libs@ | ||
34 | module_la_LDFLAGS = -module -avoid-version | ||
35 | module_la_LIBTOOLFLAGS = --tag=disable-static | ||
36 | |||
37 | else | ||
38 | |||
39 | noinst_LTLIBRARIES = libevas_engine_gl_sdl.la | ||
40 | |||
41 | libevas_engine_gl_sdl_la_SOURCES = $(GL_SDL_SOURCES) | ||
42 | libevas_engine_gl_sdl_la_LIBADD = $(GL_SDL_LIBADD) | ||
43 | |||
44 | endif | ||
45 | endif | ||
46 | |||
47 | EXTRA_DIST = evas_engine.h | ||