forked from Mirrors/freeswitch
7db7234fe4
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6474 d0543943-73ff-0310-b7d9-9358b9ac24b2
139 lines
5.0 KiB
Makefile
Executable File
139 lines
5.0 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
# Sample debian/rules that uses debhelper.
|
|
# This file is public domain software, originally written by Joey Hess.
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
# export DH_VERBOSE=1
|
|
export DH_OPTIONS
|
|
export DH_COMPAT=4
|
|
export DEB_DH_INSTALL_SOURCEDIR=debian/tmp
|
|
export PASSTHRU_CODEC_MODULES=codecs/mod_g729 codecs/mod_g723_1 codecs/mod_amr
|
|
export SPIDERMONKEY_MODULES=languages/mod_spidermonkey languages/mod_spidermonkey_core_db languages/mod_spidermonkey_odbc languages/mod_spidermonkey_socket languages/mod_spidermonkey_teletone
|
|
export APPLICATIONS_MODULES=applications/mod_commands applications/mod_conference applications/mod_dptools applications/mod_enum applications/mod_esf applications/mod_expr applications/mod_fifo applications/mod_limit applications/mod_rss applications/mod_voicemail
|
|
export ASR_TTS_MODULES=asr_tts/mod_openmrcp
|
|
export CODECS_MODULES=codecs/mod_g711 codecs/mod_g722 codecs/mod_g726 codecs/mod_gsm codecs/mod_ilbc codecs/mod_h26x codecs/mod_l16 codecs/mod_speex
|
|
export DIALPLANS_MODULES=dialplans/mod_dialplan_asterisk dialplans/mod_dialplan_directory dialplans/mod_dialplan_xml
|
|
export DIRECTORIES_MODULES=
|
|
export DOTNET_MODULES=
|
|
export ENDPOINTS_MODULES=endpoints/mod_dingaling endpoints/mod_iax endpoints/mod_portaudio endpoints/mod_sofia endpoints/mod_woomera ../../libs/openzap/mod_openzap
|
|
export EVENT_HANDLERS_MODULES=event_handlers/mod_event_multicast event_handlers/mod_event_socket
|
|
export FORMATS_MODULES=formats/mod_local_stream formats/mod_native_file formats/mod_sndfile
|
|
export LANGUAGES_MODULES=
|
|
export LOGGERS_MODULES=loggers/mod_console loggers/mod_logfile loggers/mod_syslog
|
|
export SAY_MODULES=say/mod_say_de say/mod_say_en say/mod_say_fr
|
|
export TIMERS_MODULES=
|
|
export DISABLED_MODULES=applications/mod_sountouch directories/mod_ldap languages/mod_java languages/mod_python languages/mod_spidermonkey_skel ast_tts/mod_cepstral asr_tts/mod_lumenvox endpoints/mod_wanpipe event_handlers/mod_event_test event_handlers/mod_radius_cdr event_handlers/mod_zeroconf formats/mod_shout say/mod_say_it say/mod_say_es say/mod_say_nl
|
|
export XML_INT_MODULES=xml_int/mod_xml_rpc xml_int/mod_xml_curl xml_int/mod_xml_cdr
|
|
export MYMODULES=$(PASSTHRU_CODEC_MODULES) $(SPIDERMONKEY_MODULES) $(APPLICATIONS_MODULES) $(ASR_TTS_MODULES) $(CODECS_MODULES) $(DIALPLANS_MODULES) $(DIRECTORIES_MODULES) $(DOTNET_MODULES) $(ENDPOINTS_MODULES) $(EVENT_HANDLERS_MODULES) $(FORMATS_MODULES) $(LANGUAGES_MODULES) $(LOGGERS_MODULES) $(SAY_MODULES) $(TIMERS_MODULES) $(XML_INT_MODULES)
|
|
export MODULES=$(MYMODULES)
|
|
|
|
ifndef AUTOCONF
|
|
AUTOCONFS := $(wildcard /usr/bin/autoconf*)
|
|
AUTOCONF = $(shell which autoconf)
|
|
ifneq (,$(findstring 2.50,${AUTOCONFS}))
|
|
AUTOCONF = /usr/bin/autoconf2.50
|
|
endif
|
|
endif
|
|
|
|
# These are used for cross-compiling and for saving the configure script
|
|
# from having to guess our platform (since we know it already)
|
|
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
|
|
|
|
FEATURES = --enable-core-libedit-support --enable-core-odbc-support --with-libcurl --with-openssl
|
|
|
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
FEATURES += --disable-optimization
|
|
endif
|
|
|
|
config.status: configure
|
|
dh_testdir
|
|
rm modules.conf
|
|
touch modules.conf
|
|
echo $(MODULES)
|
|
for i in $(MODULES); do echo $$i >> modules.conf; done
|
|
./configure --prefix=/opt/freeswitch \
|
|
--host=$(DEB_HOST_GNU_TYPE) \
|
|
--build=$(DEB_BUILD_GNU_TYPE) \
|
|
CFLAGS="-D__VIA_HACK__" ${FEATURES}
|
|
|
|
configure: bootstrap.sh
|
|
AUTOCONF=${AUTOCONF} ./bootstrap.sh
|
|
|
|
build: build-stamp
|
|
build-stamp: config.status
|
|
dh_testdir
|
|
|
|
$(MAKE)
|
|
|
|
touch $@
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp
|
|
|
|
-$(MAKE) clean megaclean
|
|
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
|
|
cp -f /usr/share/misc/config.sub build/config/config.sub
|
|
endif
|
|
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
|
|
cp -f /usr/share/misc/config.guess build/config/config.guess
|
|
endif
|
|
rm -f config.status
|
|
rm -f */*/config.status
|
|
rm -f */*/*/config.status
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs -A --sourcedir=debian/tmp
|
|
|
|
$(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
|
|
|
|
|
|
# Build architecture-independent files here.
|
|
binary-indep: build install
|
|
# We have nothing to do by default.
|
|
|
|
# Build architecture-dependent files here.
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
# dh_installchangelogs
|
|
# dh_installdocs
|
|
# dh_installexamples
|
|
# dh_install
|
|
# dh_installmenu
|
|
# dh_installdebconf
|
|
# dh_installlogrotate
|
|
# dh_installemacsen
|
|
# dh_installcatalogs
|
|
# dh_installpam
|
|
# dh_installmime
|
|
dh_installinit --sourcedir=debian/tmp
|
|
# dh_installcron
|
|
# dh_installinfo
|
|
# dh_undocumented
|
|
# dh_installman
|
|
cp debian/monit/freeswitch.monitrc debian/freeswitch/etc/monit/freswitch.monitrc
|
|
cp debian/default/freeswitch debian/freeswitch/etc/default
|
|
dh_install --sourcedir=debian/tmp
|
|
dh_strip
|
|
dh_compress
|
|
dh_fixperms --exclude /opt/freeswitch/conf
|
|
# dh_perl
|
|
# dh_python
|
|
# dh_makeshlibs
|
|
dh_installdeb
|
|
dh_shlibdeps --exclude=/opt/freeswitch
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install
|