gramps/src/TreeViews/Makefile.am

23 lines
579 B
Makefile
Raw Normal View History

2006-03-02 21:28:27 +00:00
# This is the src/TreeViews level Makefile for Gramps
2006-03-02 18:06:21 +00:00
# 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
pkgdatadir = $(datadir)/@PACKAGE@/TreeViews
pkgdata_PYTHON = \
__init__.py\
_PersonTreeView.py
2006-03-02 21:28:27 +00:00
pkgpyexecdir = @pkgpyexecdir@/TreeViews
pkgpythondir = @pkgpythondir@/TreeViews
2006-03-02 18:06:21 +00:00
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
2006-03-02 18:06:21 +00:00
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));