*** empty log message ***
[m17n/m17n-lib-js.git] / Makefile
1 DIST=/project/web/extra/m17n-lib/mim-js/
2 FILES=index.html test.html imlist.xml xex.js mim.js /usr/local/work/m17n-db-xml/MIM/*.mimx
3
4 upload:
5         @updated=""; \
6         for f in ${FILES}; do \
7           base=`basename $$f`; \
8           if [ ! -f "${DIST}/$$base" ] ; then \
9             echo $$f; \
10             cp $$f ${DIST}; \
11             updated="1"; \
12           elif [ "$$f" -nt "${DIST}/$$base" ] ; then \
13             echo $$f; \
14             cp $$f ${DIST}; \
15             updated="1"; \
16           fi; \
17         done; \
18         if [ -n "$$updated" ] ; then \
19           cd /project/web/source/m17n-lib; make; \
20         fi