2008-09-27 13:56:17 +00:00
|
|
|
# This is the src/gen/plug 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
|
|
|
|
|
|
|
|
SUBDIRS = \
|
2009-05-29 22:41:26 +00:00
|
|
|
docbackend\
|
|
|
|
docgen\
|
2010-05-01 04:12:42 +00:00
|
|
|
menu\
|
|
|
|
report
|
2008-09-27 13:56:17 +00:00
|
|
|
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug
|
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
2008-10-04 05:15:06 +00:00
|
|
|
__init__.py \
|
2009-05-29 22:41:26 +00:00
|
|
|
_docgenplugin.py \
|
2008-11-04 04:12:51 +00:00
|
|
|
_export.py \
|
2009-10-25 22:37:32 +00:00
|
|
|
_gramplet.py \
|
2008-10-14 02:34:28 +00:00
|
|
|
_import.py \
|
|
|
|
_manager.py \
|
2010-05-01 04:12:42 +00:00
|
|
|
_options.py \
|
2009-07-16 09:17:40 +00:00
|
|
|
_plugin.py \
|
2010-05-01 04:12:42 +00:00
|
|
|
_pluginreg.py \
|
2009-07-16 09:17:40 +00:00
|
|
|
utils.py
|
2008-09-27 13:56:17 +00:00
|
|
|
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/gen/plug
|
|
|
|
pkgpythondir = @pkgpythondir@/gen/plug
|
|
|
|
|
|
|
|
|
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
|
|
|
GRAMPS_PY_MODPATH = "../../"
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
|
|
pychecker $(pkgdata_PYTHON));
|