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