You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
693 B
29 lines
693 B
ACLOCAL_AMFLAGS = -I m4 |
|
DISTCHECK_CONFIGURE_FLAGS = --enable-introspection |
|
|
|
DISTCLEANFILES = \ |
|
intltool-extract \ |
|
intltool-merge \ |
|
intltool-update |
|
|
|
EXTRA_DIST = \ |
|
intltool-merge.in \ |
|
intltool-update.in \ |
|
intltool-extract.in |
|
|
|
SUBDIRS = bin src po |
|
|
|
check-po: |
|
@for i in $(top_srcdir)/po/*.po ; do \ |
|
if ! grep -q ^`basename $$i | \ |
|
sed 's,.po,,'` $(top_srcdir)/po/LINGUAS ; then \ |
|
echo '***' `basename $$i | \ |
|
sed 's,.po,,'` missing from po/LINGUAS '***' ; \ |
|
exit 1; \ |
|
fi; \ |
|
done; |
|
|
|
test: check-po |
|
pyflakes $(top_srcdir) |
|
pep8 $(top_srcdir) |
|
python3 -m sugar3.test.discover $(top_srcdir)/tests
|
|
|