2002-10-20 14:25:16 +00:00
|
|
|
# This is the src/plugins level Makefile for Gramps
|
2003-05-21 00:30:02 +00:00
|
|
|
# We could use GNU make's ':=' syntax for nice wildcard use,
|
|
|
|
# but that is not necessarily portable.
|
2002-10-20 14:25:16 +00:00
|
|
|
# If not using GNU make, then list all .py files individually
|
2004-05-27 04:29:43 +00:00
|
|
|
|
2009-01-16 16:46:40 +00:00
|
|
|
SUBDIRS = \
|
2009-01-16 21:39:51 +00:00
|
|
|
drawreport \
|
2009-01-16 23:03:35 +00:00
|
|
|
gramplet \
|
2009-01-16 21:39:51 +00:00
|
|
|
quickview \
|
2009-01-16 19:54:58 +00:00
|
|
|
rel \
|
|
|
|
tool
|
2009-01-16 16:46:40 +00:00
|
|
|
|
2004-05-27 04:29:43 +00:00
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/plugins
|
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
2008-12-20 16:37:37 +00:00
|
|
|
AgeStats.py\
|
2003-03-07 02:21:18 +00:00
|
|
|
AncestorReport.py\
|
2006-06-04 18:24:51 +00:00
|
|
|
BookReport.py\
|
2006-02-20 04:59:20 +00:00
|
|
|
Calendar.py \
|
2007-11-20 11:46:19 +00:00
|
|
|
CustomBookText.py\
|
|
|
|
DescendReport.py\
|
2003-03-07 02:21:18 +00:00
|
|
|
DetAncestralReport.py\
|
|
|
|
DetDescendantReport.py\
|
2007-07-30 03:32:19 +00:00
|
|
|
EndOfLineReport.py\
|
2008-11-04 04:12:51 +00:00
|
|
|
ExportXml.py\
|
2003-03-07 02:21:18 +00:00
|
|
|
FamilyGroup.py\
|
2008-10-21 04:22:45 +00:00
|
|
|
ImportGpkg.py\
|
2008-11-04 04:12:51 +00:00
|
|
|
ImportXml.py\
|
2007-11-20 11:46:19 +00:00
|
|
|
IndivComplete.py\
|
2007-08-18 20:09:45 +00:00
|
|
|
KinshipReport.py\
|
2007-07-27 04:14:07 +00:00
|
|
|
MarkerReport.py\
|
2006-04-30 01:25:56 +00:00
|
|
|
NarrativeWeb.py\
|
2008-03-30 03:27:32 +00:00
|
|
|
NumberOfAncestorsReport.py\
|
2008-09-07 10:41:39 +00:00
|
|
|
PlaceReport.py\
|
2008-12-31 22:01:03 +00:00
|
|
|
Records.py\
|
2007-11-20 11:46:19 +00:00
|
|
|
SimpleBookTitle.py\
|
|
|
|
Summary.py\
|
2008-12-31 22:01:03 +00:00
|
|
|
WebCal.py\
|
|
|
|
WhatsNext.py
|
2007-11-20 11:46:19 +00:00
|
|
|
|
2002-10-20 14:25:16 +00:00
|
|
|
pkgpyexecdir = @pkgpyexecdir@/plugins
|
|
|
|
pkgpythondir = @pkgpythondir@/plugins
|
|
|
|
|
2003-03-07 02:21:18 +00:00
|
|
|
GLADEFILES = \
|
2008-11-04 04:12:51 +00:00
|
|
|
book.glade\
|
|
|
|
ExportCsv.glade\
|
|
|
|
ExportFtree.glade\
|
|
|
|
ExportGeneWeb.glade\
|
|
|
|
ExportVCalendar.glade\
|
|
|
|
ExportVCard.glade\
|
2009-01-16 19:54:58 +00:00
|
|
|
ImportGedcom.glade
|
2002-10-20 14:25:16 +00:00
|
|
|
|
2006-03-04 02:56:23 +00:00
|
|
|
GRAPHICS =
|
2005-03-31 13:16:20 +00:00
|
|
|
|
2006-02-20 04:59:20 +00:00
|
|
|
DATAFILES = \
|
|
|
|
holidays.xml
|
|
|
|
|
|
|
|
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
|
2002-10-20 14:25:16 +00:00
|
|
|
|
2006-04-10 01:02:50 +00:00
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
2003-05-21 00:30:02 +00:00
|
|
|
GRAMPS_PY_MODPATH = "../:../docgen"
|
2002-10-20 14:25:16 +00:00
|
|
|
|
2003-05-21 00:30:02 +00:00
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
2004-10-06 19:16:26 +00:00
|
|
|
pychecker $(pkgdata_PYTHON));
|