blob: 6d5f1687ee632c550eab73ea8fffdd82d8fcc58b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
MAINTAINERCLEANFILES = Makefile.in
AM_CPPFLAGS = \
-I. \
-I$(top_srcdir)/src/include/eina \
-I$(top_builddir)/src/include/eina \
-I$(top_srcdir)/src/lib/eina \
-I$(top_builddir)/src/lib/eina \
@EFL_EINA_BUILD@
controllerdir = $(libdir)//eina/modules/mp/pass_through/$(MODULE_ARCH)
controller_LTLIBRARIES = module.la
module_la_SOURCES = eina_pass_through.c
module_la_CFLAGS = @EINA_CFLAGS@
module_la_LIBADD = $(top_builddir)/src/lib/eina/libeina.la @EINA_LIBS@
module_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -module -avoid-version
module_la_LIBTOOLFLAGS = --tag=disable-static
install-data-hook:
rm -f $(DESTDIR)$(controllerdir)/$(controller_LTLIBRARIES)
uninstall-hook:
rm -f $(DESTDIR)$(controllerdir)/module.*
clean-local:
rm -rf *.gcno
|