2004-11-16 09:14:23 +05:30
|
|
|
# This is the src/plugins level Makefile for Gramps
|
|
|
|
# We could use GNU make's ':=' syntax for nice wildcard use,
|
|
|
|
# but that is not necessarily portable.
|
|
|
|
# If not using GNU make, then list all .py files individually
|
|
|
|
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/dates
|
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
2005-05-24 18:38:06 +05:30
|
|
|
Date_de.py\
|
2004-11-16 09:14:23 +05:30
|
|
|
Date_ru.py\
|
2004-12-15 20:04:34 +05:30
|
|
|
Date_fr.py\
|
2005-05-24 18:38:06 +05:30
|
|
|
Date_es.py
|
2004-11-16 09:14:23 +05:30
|
|
|
|
2005-06-05 09:31:56 +05:30
|
|
|
# Date_fi.py
|
|
|
|
|
2004-11-16 09:14:23 +05:30
|
|
|
pkgpyexecdir = @pkgpyexecdir@/dates
|
|
|
|
pkgpythondir = @pkgpythondir@/dates
|
|
|
|
|
|
|
|
GRAMPS_PY_MODPATH = ".."
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
|
|
pychecker $(pkgdata_PYTHON));
|