forked from Mirrors/freeswitch
c7b05ea27c
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16719 d0543943-73ff-0310-b7d9-9358b9ac24b2
27 lines
775 B
Makefile
27 lines
775 B
Makefile
macrodir = @ac_macro_dir@
|
|
auxdir = @ac_aux_dir@
|
|
AUX_DIST = $(auxdir)/config.guess \
|
|
$(auxdir)/config.sub \
|
|
$(auxdir)/install-sh \
|
|
$(auxdir)/ltconfig \
|
|
$(auxdir)/ltmain.sh \
|
|
$(auxdir)/depcomp \
|
|
$(auxdir)/missing
|
|
EXTRA_DIST = bootstrap
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure $(AUX_DIST)
|
|
|
|
ACLOCAL = aclocal -I $(macrodir)
|
|
|
|
SUBDIRS = conf data libs modules plugins platforms build
|
|
if TEST_SUITES
|
|
SUBDIRS += tests
|
|
endif
|
|
|
|
dox:
|
|
doxygen $(top_srcdir)/docs/doxygen.conf
|
|
|
|
install-data-local:
|
|
test -d $(logdir) || $(mkinstalldirs) $(logdir)
|