* Added new targets "trans" and "pycheck" to top-level Makefile

* 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
This commit is contained in:
Donald A. Peterson
2003-05-21 00:30:02 +00:00
parent b2da3d9d63
commit f30c137391
9 changed files with 84 additions and 46 deletions

View File

@@ -1,7 +1,7 @@
# This is the src/plugins level Makefile for Gramps
# Use GNU make's ':=' syntax for nice wildcard use.
# 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
pkgpython_PYTHON = \
AncestorChart.py\
AncestorReport.py\
@@ -51,8 +51,12 @@ GLADEFILES = \
summary.glade\
verify.glade
pkgdatadir = ${datadir}/@PACKAGE@/plugins
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgdata_DATA = ${GLADEFILES}
dist_pkgdata_DATA = ${pkgdata_DATA}
dist_pkgdata_DATA = $(GLADEFILES)
GRAMPS_PY_MODPATH = "../:../docgen"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));