gramps/src/GrampsLogger/Makefile.am

23 lines
581 B
Makefile
Raw Normal View History

2006-03-03 02:58:27 +05:30
# This is the src/GrampsLogger level Makefile for Gramps
2006-03-02 23:36:21 +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
2006-03-03 02:58:27 +05:30
pkgdatadir = $(datadir)/@PACKAGE@/GrampsLogger
2006-03-02 23:36:21 +05:30
pkgdata_PYTHON = \
_ErrorReportAssistant.py\
_ErrorView.py\
_GtkHandler.py\
__init__.py\
2006-03-02 23:36:21 +05:30
_RotateHandler.py
2006-03-03 02:58:27 +05:30
pkgpyexecdir = @pkgpyexecdir@/GrampsLogger
pkgpythondir = @pkgpythondir@/GrampsLogger
2006-03-02 23:36:21 +05:30
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));