forked from Mirrors/freeswitch
da925bddf8
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13790 d0543943-73ff-0310-b7d9-9358b9ac24b2
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
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 = libs modules plugins platforms build
|
|
if TEST_SUITES
|
|
SUBDIRS += tests
|
|
endif
|
|
|
|
dox:
|
|
doxygen $(top_srcdir)/docs/doxygen.conf
|
|
|
|
def-conf:
|
|
test -d $(confdir) || $(mkinstalldirs) $(confdir)
|
|
for conffile in `find conf -name \*.xml` ; do \
|
|
filename=`echo $$conffile | sed -e 's|^.*/||'`; \
|
|
$(INSTALL) -m 644 conf/$$filename $(confdir); \
|
|
done
|
|
|
|
def-data:
|
|
test -d $(datadir) || $(mkinstalldirs) $(datadir)
|
|
for datafile in `find data -name *.pcm -o -name *.xml` ; do \
|
|
filename=`echo $$datafile | sed -e 's|^.*/||'`; \
|
|
$(INSTALL) -m 644 data/$$filename $(datadir); \
|
|
done
|
|
|
|
install-data-local:
|
|
test -d $(confdir) || $(MAKE) def-conf
|
|
test -d $(datadir) || $(MAKE) def-data
|
|
test -d $(logdir) || $(mkinstalldirs) $(logdir)
|