diff options
author | Daniel Kolesa <d.kolesa@samsung.com> | 2014-10-06 11:32:25 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@samsung.com> | 2014-10-06 13:28:09 +0100 |
commit | f33101ea8cd7564aaf1f30c3280110c9c1f8d46d (patch) | |
tree | 7506ee821f4d1b9d23a3f2d9bb18d9df66cb75ab /src/Makefile_Ecore_Audio.am | |
parent | b2afff23cb66a1c08ae36cd4bc7c45b43ba27700 (diff) | |
download | efl-f33101ea8cd7564aaf1f30c3280110c9c1f8d46d.tar.gz |
elua/autotools: generate .eo.lua files out of all eo files at build time
Also change the generator a bit so that it doesn't rely on lib name information
and fix the runtime to properly source lua files within tree.
Diffstat (limited to 'src/Makefile_Ecore_Audio.am')
-rw-r--r-- | src/Makefile_Ecore_Audio.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Makefile_Ecore_Audio.am b/src/Makefile_Ecore_Audio.am index 4aee10204a..e87ffb408a 100644 --- a/src/Makefile_Ecore_Audio.am +++ b/src/Makefile_Ecore_Audio.am @@ -75,3 +75,16 @@ lib/ecore_audio/ecore_audio_sndfile_vio.c endif endif + +if HAVE_ELUA + +ecore_audio_eolian_lua = $(ecore_audio_eolian_files:%.eo=%.eo.lua) + +generated_ecore_audio_lua_all = $(ecore_audio_eolian_lua) + +CLEANFILES += $(generated_ecore_audio_lua_all) + +installed_ecoreaudioluadir = $(datadir)/elua/modules/ecore_audio +nodist_installed_ecoreaudiolua_DATA = $(generated_ecore_audio_lua_all) + +endif |