2008-09-27 19:26:17 +05:30
|
|
|
# This is the src/gen/plug level Makefile for Gramps
|
2011-12-06 22:26:50 +05:30
|
|
|
# $Id$
|
2008-09-27 19:26:17 +05:30
|
|
|
# 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-30 04:11:26 +05:30
|
|
|
docbackend\
|
|
|
|
docgen\
|
2010-05-01 09:42:42 +05:30
|
|
|
menu\
|
|
|
|
report
|
2008-09-27 19:26:17 +05:30
|
|
|
|
2012-02-11 01:55:15 +05:30
|
|
|
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug
|
2008-09-27 19:26:17 +05:30
|
|
|
|
2012-02-11 01:55:15 +05:30
|
|
|
pkgpython_PYTHON = \
|
2008-10-04 10:45:06 +05:30
|
|
|
__init__.py \
|
2009-05-30 04:11:26 +05:30
|
|
|
_docgenplugin.py \
|
2008-11-04 09:42:51 +05:30
|
|
|
_export.py \
|
2009-10-26 04:07:32 +05:30
|
|
|
_gramplet.py \
|
2008-10-14 08:04:28 +05:30
|
|
|
_import.py \
|
|
|
|
_manager.py \
|
2010-05-01 09:42:42 +05:30
|
|
|
_options.py \
|
2009-07-16 14:47:40 +05:30
|
|
|
_plugin.py \
|
2010-05-01 09:42:42 +05:30
|
|
|
_pluginreg.py \
|
2009-07-16 14:47:40 +05:30
|
|
|
utils.py
|
2008-09-27 19:26:17 +05:30
|
|
|
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/gen/plug
|
|
|
|
|
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
|
|
|
GRAMPS_PY_MODPATH = "../../"
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
2012-02-11 01:55:15 +05:30
|
|
|
pychecker $(pkgpython_PYTHON));
|