mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-23 09:54:14 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16243 d0543943-73ff-0310-b7d9-9358b9ac24b2
43 lines
1.6 KiB
Makefile
43 lines
1.6 KiB
Makefile
BASE=../../../..
|
|
PERL = `which perl`
|
|
PERL_LIBDIR =-L$(shell perl -MConfig -e 'print $$Config{archlib}')/CORE
|
|
PERL_LIBS =$(shell perl -MConfig -e 'print $$Config{libs}')
|
|
LOCAL_CFLAGS= -w -DMULTIPLICITY $(shell $(PERL) -MExtUtils::Embed -e ccopts) -DEMBED_PERL
|
|
LOCAL_LDFLAGS=$(shell $(PERL) -MExtUtils::Embed -e ldopts) $(shell $(PERL) -MConfig -e 'print $$Config{libs}')
|
|
LOCAL_OBJS=freeswitch_perl.o mod_perl_wrap.o perlxsi.o
|
|
VERBOSE=1
|
|
|
|
include $(BASE)/build/modmake.rules
|
|
|
|
|
|
reswig: swigclean mod_perl_wrap.cpp
|
|
|
|
swigclean: clean
|
|
rm -f mod_perl_wrap.* freeswitch.so freeswitch.pm
|
|
|
|
mod_perl_wrap.cpp:
|
|
swig -static -shadow -perl5 -c++ -DMULTIPLICITY -I../../../../src/include -o mod_perl_wrap.cpp freeswitch.i
|
|
echo "#include \"mod_perl_extra.c\"" >> mod_perl_wrap.cpp
|
|
patch -s -p0 -i hack.diff
|
|
|
|
orig: mod_perl_wrap.cpp
|
|
patch -R -s -p0 -i hack.diff
|
|
|
|
freeswitch.$(LIBTOOL_LIB_EXTEN): $(LOCAL_OBJS) $(LOCAL_LIBADD)
|
|
$(CXXLINK) $(SOLINK) -o freeswitch.$(LIBTOOL_LIB_EXTEN) $(LOCAL_OBJS) $(LOCAL_LIBADD) $(LDFLAGS)
|
|
|
|
local_all: freeswitch.$(LIBTOOL_LIB_EXTEN)
|
|
|
|
.perlok:
|
|
@(${PERL} -V | grep -i usemultiplicity=define >/dev/null && echo Phew, You have the right perl.) \
|
|
|| ((echo Sorry, you need to compile perl with threads and multiplicity.&& exit 1))
|
|
@touch .perlok
|
|
|
|
local_clean:
|
|
rm -fr *~ .perlok .libs freeswitch.$(LIBTOOL_LIB_EXTEN) 2>/dev/null
|
|
|
|
depend_install:
|
|
mkdir -p $(DESTDIR)$(prefix)/perl
|
|
$(LTINSTALL) freeswitch.$(LIBTOOL_LIB_EXTEN) freeswitch.pm $(DESTDIR)$(prefix)/perl
|
|
if [ ! -f $(DESTDIR)$(prefix)/perl/freeswitch.pm ] ; then $(LTINSTALL) freeswitch.pm $(DESTDIR)$(prefix)/perl ; fi
|