forked from Mirrors/freeswitch
19 lines
661 B
Makefile
19 lines
661 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
def-conf:
|
|
test -d $(confdir) || $(mkinstalldirs) $(confdir)
|
|
for conffile in `find ./ -maxdepth 1 -name \*.xml -o -name \*.xsd` ; do \
|
|
filename=`echo $$conffile | sed -e 's|^.*/||'`; \
|
|
$(INSTALL) -m 644 $$filename $(confdir); \
|
|
done
|
|
|
|
test -d $(confdir)/client-profiles || $(mkinstalldirs) $(confdir)/client-profiles
|
|
for conffile in `find ./client-profiles/ -maxdepth 1 -name \*.xml -o -name \*.xsd` ; do \
|
|
filename=`echo $$conffile | sed -e 's|^.*/||'`; \
|
|
$(INSTALL) -m 644 client-profiles/$$filename $(confdir)/client-profiles; \
|
|
done
|
|
|
|
|
|
install-data-local:
|
|
test -d $(confdir) || $(MAKE) def-conf
|