gramps/src/plugins/Makefile.am

137 lines
2.4 KiB
Makefile
Raw Normal View History

2002-10-20 19:55:16 +05:30
# 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 19:55:16 +05:30
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgdata_PYTHON = \
all_events.py\
2007-12-24 02:38:10 +05:30
all_relations.py\
AncestorChart.py\
2003-03-07 07:51:18 +05:30
AncestorReport.py\
BookReport.py\
CalculateEstimatedDates.py\
Calendar.py \
2003-03-07 07:51:18 +05:30
ChangeTypes.py\
ChangeNames.py\
2003-03-07 07:51:18 +05:30
Check.py\
Checkpoint.py\
CountAncestors.py\
CustomBookText.py\
2003-03-07 07:51:18 +05:30
Desbrowser.py\
2005-12-06 12:08:09 +05:30
DescendChart.py\
DescendReport.py\
2003-03-07 07:51:18 +05:30
DetAncestralReport.py\
DetDescendantReport.py\
2007-07-30 09:02:19 +05:30
EndOfLineReport.py\
Eval.py\
2003-03-07 07:51:18 +05:30
EventCmp.py\
EventNames.py\
ExportCSV.py\
ExportVCalendar.py\
ExportVCard.py\
ExtractCity.py\
2003-03-07 07:51:18 +05:30
FamilyGroup.py\
2007-07-23 15:43:45 +05:30
FamilyLines.py\
FanChart.py\
FindDupes.py\
2003-03-07 07:51:18 +05:30
GraphViz.py\
GVHourGlass.py\
2007-12-24 02:38:10 +05:30
GVRelGraph.py\
ImportCSV.py\
ImportGeneWeb.py\
ImportvCard.py\
IndivComplete.py\
2007-08-19 01:39:45 +05:30
KinshipReport.py\
Leak.py\
lineage.py\
2007-07-27 09:44:07 +05:30
MarkerReport.py\
MediaManager.py\
2006-04-30 06:55:56 +05:30
NarrativeWeb.py\
OwnerEditor.py\
2003-03-07 07:51:18 +05:30
PatchNames.py\
ReadGrdb.py\
ReadPkg.py\
Rebuild.py\
RebuildRefMap.py\
2003-03-07 07:51:18 +05:30
RelCalc.py\
rel_cs.py\
2007-12-24 02:38:10 +05:30
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\
siblings.py\
SimpleBookTitle.py\
SoundGen.py\
StatisticsChart.py\
Summary.py\
TimeLine.py\
Verify.py\
WebCal.py
WriteFtree.py\
2007-12-24 02:38:10 +05:30
WriteGeneWeb.py\
WritePkg.py\
WriteCD.py
# DateParserDisplayTest.py\
# DumpGenderStats.py\
# PHPGedViewConnector.py\
# TestcaseGenerator.py
2002-10-20 19:55:16 +05:30
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = @pkgpythondir@/plugins
2003-03-07 07:51:18 +05:30
GLADEFILES = \
changetype.glade\
csvexport.glade\
2003-03-07 07:51:18 +05:30
desbrowse.glade\
eventcmp.glade\
merge.glade\
patchnames.glade\
changenames.glade\
2003-03-07 07:51:18 +05:30
relcalc.glade\
soundex.glade\
summary.glade\
2003-05-24 04:41:38 +05:30
verify.glade\
2003-05-24 09:10:58 +05:30
cdexport.glade\
eval.glade\
leak.glade\
book.glade\
ownereditor.glade\
writeftree.glade\
genewebexport.glade\
2005-12-06 12:08:09 +05:30
vcardexport.glade\
vcalendarexport.glade\
checkpoint.glade\
unused.glade
2002-10-20 19:55:16 +05:30
2006-03-04 08:26:23 +05:30
GRAPHICS =
DATAFILES = \
holidays.xml
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
2002-10-20 19:55:16 +05:30
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../:../docgen"
2002-10-20 19:55:16 +05:30
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));