gramps/src/plugins/Makefile.am

112 lines
1.9 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgdata_PYTHON = \
AncestorChart2.py\
2003-03-07 02:21:18 +00:00
AncestorReport.py\
BookReport.py\
Calendar.py \
2003-03-07 02:21:18 +00:00
ChangeTypes.py\
ChangeNames.py\
2003-03-07 02:21:18 +00:00
Check.py\
CountAncestors.py\
2003-03-07 02:21:18 +00:00
Desbrowser.py\
DescendReport.py\
2005-12-06 06:38:09 +00:00
DescendChart.py\
2003-03-07 02:21:18 +00:00
DetAncestralReport.py\
DetDescendantReport.py\
EventCmp.py\
ExportVCalendar.py\
ExportVCard.py\
2003-03-07 02:21:18 +00:00
FamilyGroup.py\
FanChart.py\
2003-03-07 02:21:18 +00:00
GraphViz.py\
IndivComplete.py\
ImportvCard.py\
FindDupes.py\
2006-04-30 01:25:56 +00:00
NarrativeWeb.py\
2003-03-07 02:21:18 +00:00
PatchNames.py\
2003-05-23 23:11:38 +00:00
ReadPkg.py\
ReadGrdb.py\
Rebuild.py\
2003-03-07 02:21:18 +00:00
RelCalc.py\
ReorderIds.py\
SoundGen.py\
StatisticsChart.py\
2003-03-07 02:21:18 +00:00
Summary.py\
TimeLine.py\
Verify.py\
WriteFtree.py\
WritePkg.py\
2003-05-23 23:11:38 +00:00
WriteCD.py\
OwnerEditor.py\
2003-05-23 23:11:38 +00:00
rel_ru.py\
2004-05-11 02:34:33 +00:00
Eval.py\
Leak.py\
SimpleBookTitle.py\
CustomBookText.py\
rel_cs.py\
rel_it.py\
rel_hu.py\
rel_da.py\
rel_de.py\
rel_fi.py\
rel_fr.py\
rel_no.py\
rel_sv.py\
rel_sk.py\
ImportGeneWeb.py\
WriteGeneWeb.py\
2005-12-06 06:38:09 +00:00
rel_es.py\
Checkpoint.py\
MediaManager.py\
RemoveUnused.py\
rel_pl.py\
RebuildRefMap.py
2002-10-20 14:25:16 +00:00
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = @pkgpythondir@/plugins
2003-03-07 02:21:18 +00:00
GLADEFILES = \
changetype.glade\
desbrowse.glade\
eventcmp.glade\
merge.glade\
patchnames.glade\
changenames.glade\
2003-03-07 02:21:18 +00:00
relcalc.glade\
soundex.glade\
summary.glade\
2003-05-23 23:11:38 +00:00
verify.glade\
2003-05-24 03:40:58 +00:00
cdexport.glade\
eval.glade\
leak.glade\
book.glade\
ownereditor.glade\
writeftree.glade\
genewebexport.glade\
2005-12-06 06:38:09 +00:00
vcardexport.glade\
vcalendarexport.glade\
checkpoint.glade\
unused.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));