Plugins Restructure: Move graph reports into plugins/graph.

svn: r11639
This commit is contained in:
Brian Matherly 2009-01-17 03:07:31 +00:00
parent 853e54a624
commit 8948630cd3
5 changed files with 23 additions and 3 deletions

View File

@ -32,9 +32,6 @@ pkgdata_PYTHON = \
ExportVCard.py\
ExportXml.py\
FamilyGroup.py\
GVFamilyLines.py \
GVHourGlass.py\
GVRelGraph.py\
ImportCsv.py\
ImportGedcom.py\
ImportGeneWeb.py\

View File

@ -0,0 +1,23 @@
# This is the src/plugins/graph 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins/graph
pkgdata_PYTHON = \
GVFamilyLines.py \
GVHourGlass.py \
GVRelGraph.py
pkgpyexecdir = @pkgpyexecdir@/plugins/graph
pkgpythondir = @pkgpythondir@/plugins/graph
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));