More like other efl libs and maybe we have more modules for eeze later on. SVN revision: 76847devs/devilhorns/wayland_egl
parent
371defbd32
commit
0b753f3e33
6 changed files with 28 additions and 16 deletions
@ -1,2 +1,2 @@ |
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
SUBDIRS = lib bin tests
|
||||
SUBDIRS = lib bin tests modules
|
||||
|
@ -0,0 +1,26 @@ |
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
AM_CPPFLAGS = @EEZE_CFLAGS@ \
|
||||
-I$(top_srcdir) \ |
||||
-I$(top_srcdir)/src/lib \ |
||||
-DPACKAGE_LIB_DIR=\"$(libdir)\"
|
||||
|
||||
AM_CFLAGS = @EEZE_CFLAGS@
|
||||
|
||||
includesdir = $(includedir)/eeze-@VMAJ@
|
||||
|
||||
# Sensor modules
|
||||
pkgdir = $(libdir)/eeze-sensor
|
||||
if HAVE_EEZE_TIZEN |
||||
pkg_LTLIBRARIES = eeze-sensor-tizen.la
|
||||
eeze_sensor_tizen_la_SOURCES = eeze_sensor_tizen.c
|
||||
eeze_sensor_tizen_la_LDFLAGS = -no-undefined -module -avoid-version @TIZEN_SENSOR_LIBS@
|
||||
eeze_sensor_tizen_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
else |
||||
pkg_LTLIBRARIES = eeze-sensor-fake.la
|
||||
eeze_sensor_fake_la_SOURCES = eeze_sensor_fake.c
|
||||
eeze_sensor_fake_la_LDFLAGS = -no-undefined -module -avoid-version
|
||||
eeze_sensor_fake_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
endif |
||||
|
||||
|
Loading…
Reference in new issue