forked from Mirrors/freeswitch
c7b05ea27c
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16719 d0543943-73ff-0310-b7d9-9358b9ac24b2
12 lines
316 B
Makefile
12 lines
316 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
def-conf:
|
|
test -d $(confdir) || $(mkinstalldirs) $(confdir)
|
|
for conffile in `find ./ -name \*.xml` ; do \
|
|
filename=`echo $$conffile | sed -e 's|^.*/||'`; \
|
|
$(INSTALL) -m 644 $$filename $(confdir); \
|
|
done
|
|
|
|
install-data-local:
|
|
test -d $(confdir) || $(MAKE) def-conf
|