diff options
author | Flavio Ceolin <flavio.ceolin@gmail.com> | 2014-06-14 14:42:54 -0300 |
---|---|---|
committer | Flavio Ceolin <flavio.ceolin@gmail.com> | 2014-08-14 23:33:17 -0300 |
commit | 4bcad551f64006f54684c789f05775166b724414 (patch) | |
tree | 99f1ccbde6203441461fb1bd437e56fd2a95098a /Makefile.am | |
parent | dd0fc737d8073237f7beb727d935c3128c25de6e (diff) |
Introducing EMIX lib
This library will replace epulse. Epulse will become a backend for emix
also an alsa's backend intend to be created.
The idea behind emix is support any kind of audio's backend, they only
need to implement the methods of Emix_Backend.
It's just an introdutory commit.
The code an idea is from Marcel Hollerbach (bu5hm4n)
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 290c76f..b53efe8 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -24,7 +24,16 @@ MAINTAINERCLEANFILES = \ | |||
24 | EXTRA_DIST = | 24 | EXTRA_DIST = |
25 | 25 | ||
26 | lib_LTLIBRARIES = \ | 26 | lib_LTLIBRARIES = \ |
27 | src/lib/libepulse.la | 27 | src/lib/libepulse.la \ |
28 | src/lib/libemix.la | ||
29 | |||
30 | src_lib_libemix_la_SOURCES = \ | ||
31 | src/lib/emix.h \ | ||
32 | src/lib/emix.c | ||
33 | |||
34 | src_lib_libemix_la_LIBADD = @EFL_LIBS@ | ||
35 | src_lib_libemix_la_LDFLAGS = -no-undefined -avoid-version | ||
36 | src_lib_libemix_la_LIBTOOLFLAGS = --tag=disable-static | ||
28 | 37 | ||
29 | src_lib_libepulse_la_SOURCES = \ | 38 | src_lib_libepulse_la_SOURCES = \ |
30 | src/lib/common.c \ | 39 | src/lib/common.c \ |