2005-11-12 21:27:19 +00:00
|
|
|
EXTRA_DIST =
|
2007-03-16 19:20:24 +00:00
|
|
|
SUBDIRS = . src
|
2007-03-13 02:26:00 +00:00
|
|
|
AUTOMAKE_OPTS = foreign
|
2005-11-12 21:27:19 +00:00
|
|
|
NAME=freeswitch
|
2006-01-02 18:31:50 +00:00
|
|
|
PREFIX=$(prefix)
|
2006-12-16 23:22:45 +00:00
|
|
|
|
2007-03-11 04:02:10 +00:00
|
|
|
AM_CFLAGS = $(SWITCH_AM_CFLAGS)
|
2007-03-12 04:21:54 +00:00
|
|
|
AM_CPPFLAGS = $(SWITCH_AM_CXXFLAGS)
|
2007-03-11 04:02:10 +00:00
|
|
|
AM_LDFLAGS = $(SWITCH_AM_LDFLAGS)
|
2007-03-11 06:36:04 +00:00
|
|
|
BASE = $(switch_srcdir)
|
2007-03-16 19:20:24 +00:00
|
|
|
OSARCH=`uname -s`
|
2007-03-11 06:36:04 +00:00
|
|
|
|
2007-03-18 19:23:09 +00:00
|
|
|
LIBTOOL=`if test -z "$(VERBOSE)" ; then echo $(SHELL) $(switch_builddir)/quiet_libtool ;else echo $(switch_builddir)/libtool; fi;`
|
|
|
|
|
2007-03-09 20:44:13 +00:00
|
|
|
LTINSTALL = $(LIBTOOL) --mode=install $(INSTALL)
|
2007-03-18 05:20:35 +00:00
|
|
|
TOUCH_TARGET=if test -f "$@" ; then touch "$@" ; fi ;
|
2007-03-18 16:45:57 +00:00
|
|
|
AM_MAKEFLAGS=`test -n "$(VERBOSE)" || echo -s`
|
2007-03-09 20:44:13 +00:00
|
|
|
|
2006-05-05 13:35:33 +00:00
|
|
|
if CRASHPROT
|
|
|
|
AM_CFLAGS += -DCRASH_PROT
|
|
|
|
endif
|
|
|
|
|
2005-11-12 21:27:19 +00:00
|
|
|
libfreeswitch_la_SOURCES = \
|
2007-03-09 20:44:13 +00:00
|
|
|
src/switch_apr.c \
|
2005-11-12 21:27:19 +00:00
|
|
|
src/switch_buffer.c \
|
|
|
|
src/switch_caller.c \
|
|
|
|
src/switch_channel.c \
|
|
|
|
src/switch_console.c \
|
|
|
|
src/switch_core.c \
|
2007-03-09 20:44:13 +00:00
|
|
|
src/switch_core_db.c\
|
2005-11-12 21:27:19 +00:00
|
|
|
src/switch_loadable_module.c \
|
2005-12-13 19:53:29 +00:00
|
|
|
src/switch_utils.c \
|
2006-01-06 02:07:24 +00:00
|
|
|
src/switch_event.c \
|
2006-01-26 17:57:25 +00:00
|
|
|
src/switch_resample.c \
|
2007-03-09 20:44:13 +00:00
|
|
|
src/switch_regex.c\
|
|
|
|
src/switch_rtp.c\
|
2006-04-04 16:07:40 +00:00
|
|
|
src/switch_ivr.c \
|
2006-04-11 21:13:44 +00:00
|
|
|
src/switch_stun.c\
|
2006-05-05 21:05:11 +00:00
|
|
|
src/switch_log.c\
|
2007-03-23 20:41:16 +00:00
|
|
|
src/switch_xml.c\
|
|
|
|
libs/libteletone/src/libteletone_detect.c\
|
|
|
|
libs/libteletone/src/libteletone_generate.c
|
|
|
|
|
2006-01-06 02:01:11 +00:00
|
|
|
|
2007-03-11 06:49:21 +00:00
|
|
|
library_includedir = $(PREFIX)/include
|
2007-03-09 20:44:13 +00:00
|
|
|
|
2006-02-22 17:20:39 +00:00
|
|
|
library_include_HEADERS = \
|
2006-04-03 21:00:13 +00:00
|
|
|
src/include/switch_am_config.h\
|
2006-02-22 17:20:39 +00:00
|
|
|
src/include/switch.h\
|
|
|
|
src/include/switch_apr.h\
|
|
|
|
src/include/switch_buffer.h\
|
|
|
|
src/include/switch_caller.h\
|
|
|
|
src/include/switch_channel.h\
|
|
|
|
src/include/switch_console.h\
|
|
|
|
src/include/switch_core.h\
|
2007-03-09 20:44:13 +00:00
|
|
|
src/include/switch_core_db.h\
|
2006-02-22 17:20:39 +00:00
|
|
|
src/include/switch_event.h\
|
|
|
|
src/include/switch_frame.h\
|
|
|
|
src/include/switch_ivr.h\
|
|
|
|
src/include/switch_loadable_module.h\
|
|
|
|
src/include/switch_module_interfaces.h\
|
|
|
|
src/include/switch_platform.h\
|
|
|
|
src/include/switch_resample.h\
|
2007-03-09 20:44:13 +00:00
|
|
|
src/include/switch_regex.h\
|
2006-02-22 17:20:39 +00:00
|
|
|
src/include/switch_types.h\
|
|
|
|
src/include/switch_utils.h\
|
2006-04-03 21:00:13 +00:00
|
|
|
src/include/switch_rtp.h\
|
2006-04-11 21:13:44 +00:00
|
|
|
src/include/switch_stun.h\
|
2006-05-05 21:05:11 +00:00
|
|
|
src/include/switch_log.h\
|
2007-03-23 20:41:16 +00:00
|
|
|
src/include/switch_xml.h\
|
|
|
|
libs/libteletone/src/libteletone_detect.h\
|
|
|
|
libs/libteletone/src/libteletone_generate.h\
|
|
|
|
libs/libteletone/src/libteletone.h
|
|
|
|
|
|
|
|
|
2006-02-22 17:20:39 +00:00
|
|
|
|
2007-03-16 19:20:24 +00:00
|
|
|
CORE_CFLAGS = `$(switch_srcdir)/libs/apr/apr-1-config --cflags --cppflags --includes`
|
|
|
|
CORE_CFLAGS += `$(switch_srcdir)/libs/apr-util/apu-1-config --includes`
|
2007-03-11 06:36:04 +00:00
|
|
|
CORE_CFLAGS += -I$(switch_srcdir)/libs/sqlite
|
|
|
|
CORE_CFLAGS += -I$(switch_srcdir)/libs/pcre
|
|
|
|
CORE_CFLAGS += -I$(switch_srcdir)/libs/srtp/include
|
|
|
|
CORE_CFLAGS += -I$(switch_srcdir)/libs/srtp/crypto/include
|
|
|
|
CORE_CFLAGS += -I$(switch_srcdir)/libs/libresample/include
|
|
|
|
CORE_CFLAGS += -I$(switch_srcdir)/libs/libteletone/src
|
2007-03-09 20:44:13 +00:00
|
|
|
|
2007-03-11 08:33:49 +00:00
|
|
|
CORE_LIBS = libs/apr/libapr-1.la libs/apr-util/libaprutil-1.la
|
2007-03-11 07:36:49 +00:00
|
|
|
CORE_LIBS += libs/sqlite/libsqlite3.la libs/pcre/libpcre.la
|
|
|
|
CORE_LIBS += libs/srtp/libsrtp.la libs/libresample/libresample.la
|
2007-03-09 20:44:13 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = libfreeswitch.la
|
2007-03-11 04:02:10 +00:00
|
|
|
libfreeswitch_la_CFLAGS = $(CORE_CFLAGS) $(AM_CFLAGS)
|
2007-03-11 07:36:49 +00:00
|
|
|
libfreeswitch_la_LDFLAGS = -version-info 1:0:0 $(AM_LDFLAGS)
|
|
|
|
libfreeswitch_la_LIBADD = $(CORE_LIBS)
|
2006-03-07 20:09:10 +00:00
|
|
|
nodist_libfreeswitch_la_SOURCES = src/include/switch_version.h
|
2005-11-12 21:27:19 +00:00
|
|
|
|
2007-03-11 06:36:04 +00:00
|
|
|
MOD_LINK = $(BASE)/libfreeswitch.la
|
|
|
|
|
|
|
|
CLEANFILES = src/include/switch_version.h
|
2007-03-13 06:17:58 +00:00
|
|
|
BUILT_SOURCES = src/include/switch_version.h
|
2007-03-11 04:02:10 +00:00
|
|
|
|
2007-03-22 23:20:23 +00:00
|
|
|
bin_PROGRAMS = freeswitch
|
|
|
|
freeswitch_SOURCES = src/switch.c
|
2007-03-13 06:17:58 +00:00
|
|
|
nodist_freeswitch_SOURCES = src/include/switch_version.h
|
2005-11-12 21:27:19 +00:00
|
|
|
freeswitch_CFLAGS = $(AM_CFLAGS)
|
2007-03-23 00:39:55 +00:00
|
|
|
freeswitch_LDFLAGS = $(AM_LDFLAGS) -rpath $(libdir)
|
2007-03-22 23:04:12 +00:00
|
|
|
freeswitch_LDADD = libfreeswitch.la libs/apr/libapr-1.la
|
2006-03-07 20:09:10 +00:00
|
|
|
|
2007-03-18 19:23:09 +00:00
|
|
|
$(libfreeswitch_la_SOURCES): $(CORE_LIBS) $(switch_builddir)/quiet_libtool
|
|
|
|
|
|
|
|
$(switch_builddir)/quiet_libtool: $(switch_builddir)/libtool
|
|
|
|
@cat libtool | sed -e 's|$$show "$$command"|if test -z "$$suppress_output" ; then $$show "Compiling $$srcfile ..." ; fi|' > quiet_libtool
|
2007-03-17 19:02:26 +00:00
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
install-data-local:
|
|
|
|
@echo Installing $(NAME)
|
|
|
|
@for x in conf mod db log log/xml_cdr bin scripts htdocs grammar ; do \
|
|
|
|
$(mkinstalldirs) $(DESTDIR)$(prefix)/$$x ; \
|
|
|
|
done
|
|
|
|
@if [ ! -f $(DESTDIR)$(PREFIX)/conf/freeswitch.xml ] ; then \
|
|
|
|
$(INSTALL) conf/*.xml $(DESTDIR)$(PREFIX)/conf ; \
|
|
|
|
fi
|
|
|
|
|
2007-03-13 06:17:58 +00:00
|
|
|
.version:
|
|
|
|
touch .version
|
|
|
|
|
|
|
|
src/include/switch_version.h: $(top_srcdir)/src/include/switch_version.h.in .version $(libfreeswitch_la_SOURCES) $(library_include_HEADERS)
|
|
|
|
@if test ! -f .noversion ; then \
|
|
|
|
force=0 ; \
|
|
|
|
version=`svnversion . -n || echo hacked` ; \
|
|
|
|
oldversion=`cat .version 2>/dev/null || echo "0"` ; \
|
|
|
|
test ! -f src/include/switch_version.h || grep "@SVN_VERSION@" src/include/switch_version.h && force=1 ; \
|
|
|
|
if test "$$oldversion" != "$$version" || test $$force = 1 ; then \
|
|
|
|
cat src/include/switch_version.h.in | sed "s/@SVN_VERSION@/$$version/g" > src/include/switch_version.h ; \
|
|
|
|
echo $$version > .version ; \
|
|
|
|
fi ; \
|
|
|
|
fi ;
|
2005-12-28 15:42:49 +00:00
|
|
|
|
2007-03-13 06:44:30 +00:00
|
|
|
update:
|
|
|
|
@if test -d .svn ; then \
|
|
|
|
test ! -f .version || rm -f .version ; \
|
|
|
|
echo Updating... ; \
|
|
|
|
svn update ; \
|
|
|
|
else \
|
|
|
|
echo "This source directory is not an svn working copy" ; \
|
|
|
|
fi
|
|
|
|
|
2005-12-28 15:42:49 +00:00
|
|
|
.nodepends:
|
2005-12-21 17:22:38 +00:00
|
|
|
touch .nodepends
|
|
|
|
|
2005-12-28 15:42:49 +00:00
|
|
|
nodepends: .nodepends
|
|
|
|
|
|
|
|
yesdepends:
|
|
|
|
rm .nodepends
|
|
|
|
|
2007-03-17 03:00:30 +00:00
|
|
|
libs/apr/libapr-1.la: libs/apr libs/apr/.update
|
2007-03-18 05:20:35 +00:00
|
|
|
@cd libs/apr && $(MAKE)
|
|
|
|
@$(TOUCH_TARGET)
|
2007-03-17 03:00:30 +00:00
|
|
|
|
|
|
|
libs/apr-util/libaprutil-1.la: libs/apr-util libs/apr-util/.update
|
2007-03-18 05:20:35 +00:00
|
|
|
@cd libs/apr-util && $(MAKE)
|
|
|
|
@$(TOUCH_TARGET)
|
2007-03-17 03:00:30 +00:00
|
|
|
|
|
|
|
libs/sqlite/libsqlite3.la: libs/sqlite libs/sqlite/.update
|
2007-03-18 05:20:35 +00:00
|
|
|
@cd libs/sqlite && $(MAKE)
|
|
|
|
@$(TOUCH_TARGET)
|
2007-03-17 03:00:30 +00:00
|
|
|
|
|
|
|
libs/pcre/libpcre.la: libs/pcre libs/pcre/.update
|
2007-03-18 05:20:35 +00:00
|
|
|
@cd libs/pcre && $(MAKE)
|
|
|
|
@$(TOUCH_TARGET)
|
2007-03-17 03:00:30 +00:00
|
|
|
|
|
|
|
libs/srtp/libsrtp.la: libs/srtp libs/srtp/.update
|
2007-03-18 05:20:35 +00:00
|
|
|
@cd libs/srtp && $(MAKE)
|
|
|
|
@$(TOUCH_TARGET)
|
2007-03-17 03:00:30 +00:00
|
|
|
|
|
|
|
libs/libresample/libresample.la: libs/libresample libs/libresample/.update
|
2007-03-18 05:20:35 +00:00
|
|
|
@cd libs/libresample && $(MAKE)
|
|
|
|
@$(TOUCH_TARGET)
|
2007-03-11 07:36:49 +00:00
|
|
|
|
2007-03-17 03:00:30 +00:00
|
|
|
core: libfreeswitch.la
|
2007-03-11 07:36:49 +00:00
|
|
|
|
2007-03-14 22:30:02 +00:00
|
|
|
install_core: install-libLTLIBRARIES
|
|
|
|
|
|
|
|
core_install: install_core
|
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
everything: install
|
2005-12-28 05:17:21 +00:00
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
installall: install
|
2006-01-05 21:03:22 +00:00
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
sure: clean modwipe uninstall installall
|
2006-01-05 21:03:22 +00:00
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
wayclean: clean
|
2006-09-07 03:58:01 +00:00
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
modules: libfreeswitch.la
|
2007-03-18 06:48:26 +00:00
|
|
|
@cd src/mod && $(MAKE) $(AM_MAKEFLAGS)
|
2007-03-14 14:35:11 +00:00
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
install_mod: libfreeswitch.la
|
2007-03-18 06:48:26 +00:00
|
|
|
@cd src/mod && $(MAKE) $(AM_MAKEFLAGS) install
|
2007-03-14 14:35:11 +00:00
|
|
|
|
2007-03-14 22:30:02 +00:00
|
|
|
mod_install: install_mod
|
|
|
|
|
2007-03-14 14:35:11 +00:00
|
|
|
uninstall_mod:
|
2007-03-18 06:48:26 +00:00
|
|
|
@cd src/mod && $(MAKE) $(AM_MAKEFLAGS) uninstall
|
2007-03-14 14:35:11 +00:00
|
|
|
|
2007-03-14 22:30:02 +00:00
|
|
|
mod_uninstall: uninstall_mod
|
|
|
|
|
2007-03-13 02:26:00 +00:00
|
|
|
modclean:
|
2007-03-18 16:04:41 +00:00
|
|
|
@cd src/mod && $(MAKE) $(AM_MAKEFLAGS) clean
|
2006-01-05 21:03:22 +00:00
|
|
|
|
2006-01-03 22:36:56 +00:00
|
|
|
modwipe:
|
2006-04-07 03:58:22 +00:00
|
|
|
rm -f $(PREFIX)/mod/*.${DYNAMIC_LIB_EXTEN}
|
2005-11-12 21:27:19 +00:00
|
|
|
|
2006-01-01 15:23:12 +00:00
|
|
|
dox:
|
2006-01-03 22:49:25 +00:00
|
|
|
cd docs && doxygen $(PWD)/docs/Doxygen.conf
|
2005-11-12 21:27:19 +00:00
|
|
|
|
|
|
|
eclean: clean
|
|
|
|
rm -f `find . -type f -name \*~`
|
|
|
|
rm -f `find . -type f -name \.*~`
|
|
|
|
rm -f `find . -type f -name \#\*`
|
|
|
|
rm -f `find . -type f -name \.\#\*`
|
|
|
|
rm -f `find . -type f -name core\*`
|
|
|
|
rm -f *.tar *.tgz *.gz
|
|
|
|
|
|
|
|
megaclean: eclean modclean
|
2007-03-17 01:45:13 +00:00
|
|
|
rm -f `find ./libs -name \*.la`
|
2007-03-28 17:33:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Special targets
|
|
|
|
|
|
|
|
coffee me_a_sandwich me_a_sammich:
|
|
|
|
@echo "Who do you think I am? Make it yourself!"
|