78ae19e48a
* Python verification (pychecker) removed from check-local target to become part of the pycheck target heiarchy. Each subdir now has a GRAMPS_PY_MODPATH variable that indicates a colon-separated path for the PYTHONPATH environment to allow module importing to work. svn: r1559
19 lines
453 B
Makefile
19 lines
453 B
Makefile
# This is the src/calendars level Makefile for Gramps
|
|
# Use GNU make's ':=' syntax for nice wildcard use.
|
|
# If not using GNU make, then list all .py files individually
|
|
|
|
pkgpython_PYTHON = \
|
|
Islamic.py \
|
|
Persian.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/plugins
|
|
pkgpythondir = @pkgpythondir@/plugins
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/calendars
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgpython_PYTHON));
|