a418558b73
Infrastructure for localization; hook up intltool, create po/ and po/POTFILES.in. We need to call bindtextdomain/bind_textdomain_codeset. Switch to gnome-autogen.sh to call intltool.
19 lines
370 B
Makefile
19 lines
370 B
Makefile
SUBDIRS = data js src po
|
|
|
|
EXTRA_DIST = \
|
|
.project \
|
|
.settings
|
|
|
|
distcheck-hook:
|
|
@echo "Checking disted javascript against files in git"
|
|
@failed=false; \
|
|
for f in `cd $(srcdir) && git ls-files js` ; do \
|
|
if ! test -e $(distdir)/$$f ; then \
|
|
echo File missing from distribution: $$f ; \
|
|
failed=true ; \
|
|
fi \
|
|
done ; \
|
|
if $$failed ; then \
|
|
exit 1 ; \
|
|
fi
|