gramps/src/plugins/Makefile.am

68 lines
1.3 KiB
Makefile
Raw Normal View History

2002-10-20 14:25:16 +00:00
# This is the src/plugins level Makefile for Gramps
# 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
SUBDIRS = \
drawreport \
gramplet \
quickview \
rel \
tool
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgdata_PYTHON = \
AgeStats.py\
2003-03-07 02:21:18 +00:00
AncestorReport.py\
BookReport.py\
Calendar.py \
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\
ExportXml.py\
2003-03-07 02:21:18 +00:00
FamilyGroup.py\
ImportGpkg.py\
ImportXml.py\
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\
NumberOfAncestorsReport.py\
PlaceReport.py\
Records.py\
SimpleBookTitle.py\
Summary.py\
WebCal.py\
WhatsNext.py
2002-10-20 14:25:16 +00:00
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = @pkgpythondir@/plugins
2003-03-07 02:21:18 +00:00
GLADEFILES = \
book.glade\
ExportCsv.glade\
ExportFtree.glade\
ExportGeneWeb.glade\
ExportVCalendar.glade\
ExportVCard.glade\
ImportGedcom.glade
2002-10-20 14:25:16 +00:00
2006-03-04 02:56:23 +00:00
GRAPHICS =
DATAFILES = \
holidays.xml
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
2002-10-20 14:25:16 +00:00
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../:../docgen"
2002-10-20 14:25:16 +00:00
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));