gramps/src/plugins/Makefile.am

142 lines
2.5 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 = \
all_events.py\
2007-12-23 21:08:10 +00:00
all_relations.py\
AncestorChart.py\
2003-03-07 02:21:18 +00:00
AncestorReport.py\
BookReport.py\
CalculateEstimatedDates.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\
Checkpoint.py\
CountAncestors.py\
CustomBookText.py\
DefaultGramplets.py\
2003-03-07 02:21:18 +00:00
Desbrowser.py\
2005-12-06 06:38:09 +00:00
DescendChart.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\
Eval.py\
2003-03-07 02:21:18 +00:00
EventCmp.py\
EventNames.py\
ExportCSV.py\
ExportVCalendar.py\
ExportVCard.py\
ExtractCity.py\
2003-03-07 02:21:18 +00:00
FamilyGroup.py\
2007-07-23 10:13:45 +00:00
FamilyLines.py\
FanChart.py\
FindDupes.py\
2003-03-07 02:21:18 +00:00
GraphViz.py\
GVFamilyLines.py \
GVHourGlass.py\
2007-12-23 21:08:10 +00:00
GVRelGraph.py\
ImportCSV.py\
ImportGeneWeb.py\
ImportvCard.py\
IndivComplete.py\
2007-08-18 20:09:45 +00:00
KinshipReport.py\
Leak.py\
lineage.py\
2007-07-27 04:14:07 +00:00
MarkerReport.py\
MediaManager.py\
2006-04-30 01:25:56 +00:00
NarrativeWeb.py\
OnThisDay.py\
OwnerEditor.py\
2003-03-07 02:21:18 +00:00
PatchNames.py\
ReadGrdb.py\
ReadPkg.py\
Rebuild.py\
RebuildRefMap.py\
References.py\
2003-03-07 02:21:18 +00:00
RelCalc.py\
rel_cs.py\
2007-12-23 21:08:10 +00:00
rel_da.py\
rel_de.py\
rel_es.py\
rel_fi.py\
rel_fr.py\
rel_hu.py\
rel_it.py\
rel_nl.py\
rel_no.py\
rel_pl.py\
rel_pt.py\
rel_ru.py\
rel_sk.py\
rel_sv.py\
RemoveUnused.py\
ReorderIds.py\
SameSurnames.py\
siblings.py\
SimpleBookTitle.py\
SoundGen.py\
StatisticsChart.py\
Summary.py\
TimeLine.py\
Verify.py\
WebCal.py
WriteFtree.py\
2007-12-23 21:08:10 +00:00
WriteGeneWeb.py\
WritePkg.py\
WriteCD.py
# DateParserDisplayTest.py\
# DumpGenderStats.py\
# PHPGedViewConnector.py\
# TestcaseGenerator.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\
csvexport.glade\
2003-03-07 02:21:18 +00:00
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));