move lua to automake
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16334 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
0c1ae13da1
commit
9b8392bc16
|
@ -869,6 +869,7 @@ AC_CONFIG_FILES([Makefile
|
||||||
src/mod/formats/mod_portaudio_stream/Makefile
|
src/mod/formats/mod_portaudio_stream/Makefile
|
||||||
src/mod/asr_tts/mod_unimrcp/Makefile
|
src/mod/asr_tts/mod_unimrcp/Makefile
|
||||||
src/mod/languages/mod_java/Makefile
|
src/mod/languages/mod_java/Makefile
|
||||||
|
src/mod/languages/mod_lua/Makefile
|
||||||
src/mod/languages/mod_python/Makefile
|
src/mod/languages/mod_python/Makefile
|
||||||
src/mod/languages/mod_spidermonkey/Makefile
|
src/mod/languages/mod_spidermonkey/Makefile
|
||||||
src/mod/event_handlers/mod_erlang_event/Makefile
|
src/mod/event_handlers/mod_erlang_event/Makefile
|
||||||
|
|
|
@ -1,14 +1,17 @@
|
||||||
BASE=../../../..
|
include $(top_srcdir)/build/modmake.rulesam
|
||||||
LOCAL_CFLAGS=-Ilua
|
|
||||||
|
MODNAME=mod_lua
|
||||||
|
|
||||||
LIBLUA_A=lua/liblua.a
|
LIBLUA_A=lua/liblua.a
|
||||||
LOCAL_LIBADD=$(LIBLUA_A)
|
|
||||||
LOCAL_LDFLAGS=-lm
|
|
||||||
LOCAL_OBJS=freeswitch_lua.o mod_lua_wrap.o
|
|
||||||
VERBOSE=1
|
|
||||||
|
|
||||||
include $(BASE)/build/modmake.rules
|
mod_LTLIBRARIES = mod_lua.la
|
||||||
|
mod_lua_la_SOURCES = mod_lua.cpp freeswitch_lua.cpp mod_lua_wrap.cpp
|
||||||
|
mod_lua_la_CXXFLAGS = -Ilua $(AM_CPPFLAGS)
|
||||||
|
mod_lua_la_LIBADD = $(switch_builddir)/libfreeswitch.la
|
||||||
|
mod_lua_la_LDFLAGS = -avoid-version -module -no-undefined -shared -lm $(LIBLUA_A)
|
||||||
|
|
||||||
local_depend: $(LOCAL_OBJS)
|
BUILT_SOURCES = $(LIBLUA_A)
|
||||||
|
$(mod_lua_la_SOURCES) : $(BUILT_SOURCES)
|
||||||
|
|
||||||
$(LIBLUA_A):
|
$(LIBLUA_A):
|
||||||
cd lua && $(MAKE) CC="$(CC)" AR="$(AR) rcu" CFLAGS="$(ALL_CFLAGS) -DLUA_USE_LINUX -w" liblua.a
|
cd lua && $(MAKE) CC="$(CC)" AR="$(AR) rcu" CFLAGS="$(ALL_CFLAGS) -DLUA_USE_LINUX -w" liblua.a
|
||||||
|
@ -18,10 +21,7 @@ reswig: swigclean mod_lua_wrap.cpp
|
||||||
luaclean:
|
luaclean:
|
||||||
cd lua && $(MAKE) clean
|
cd lua && $(MAKE) clean
|
||||||
|
|
||||||
freeswitch_lua.o: freeswitch_lua.h
|
|
||||||
|
|
||||||
allclean: clean luaclean
|
allclean: clean luaclean
|
||||||
rm -f mod_lua_wrap.* freeswitch_lua.$(DYNAMIC_LIB_EXTEN)
|
|
||||||
|
|
||||||
swigclean: clean
|
swigclean: clean
|
||||||
rm -f mod_lua_wrap.*
|
rm -f mod_lua_wrap.*
|
||||||
|
@ -31,5 +31,3 @@ mod_lua_wrap.cpp: mod_lua_extra.c
|
||||||
echo "#include \"mod_lua_extra.c\"" >> mod_lua_wrap.cpp
|
echo "#include \"mod_lua_extra.c\"" >> mod_lua_wrap.cpp
|
||||||
patch -s -p0 -i hack.diff
|
patch -s -p0 -i hack.diff
|
||||||
|
|
||||||
freeswitch_lua.$(DYNAMIC_LIB_EXTEN): $(LOCAL_OBJS) $(LOCAL_LIBADD)
|
|
||||||
$(LINK) $(SOLINK) -o freeswitch_lua.$(DYNAMIC_LIB_EXTEN) $(LOCAL_OBJS) $(LOCAL_LIBADD) $(LDFLAGS)
|
|
Loading…
Reference in New Issue