gramps/gramps2/src/plugins/Makefile.am

85 lines
1.5 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
2003-03-07 07:51:18 +05:30
pkgpython_PYTHON = \
AncestorChart.py\
AncestorReport.py\
2003-06-14 06:46:09 +05:30
Ancestors.py\
2003-06-27 09:55:32 +05:30
BookReport.py\
2003-03-07 07:51:18 +05:30
ChangeTypes.py\
Check.py\
count_anc.py\
Desbrowser.py\
DescendReport.py\
DesGraph.py\
DetAncestralReport.py\
DetDescendantReport.py\
EventCmp.py\
FamilyGroup.py\
FanChart.py\
FtmStyleAncestors.py\
FtmStyleDescendants.py\
2003-03-07 07:51:18 +05:30
FilterEditor.py\
GraphViz.py\
IndivComplete.py\
IndivSummary.py\
Merge.py\
PatchNames.py\
ReadGedcom.py\
2003-05-24 04:41:38 +05:30
ReadPkg.py\
2003-03-07 07:51:18 +05:30
ReadNative.py\
RelCalc.py\
ReorderIds.py\
soundgen.py\
Summary.py\
TimeLine.py\
Verify.py\
WebPage.py\
WriteFtree.py\
2003-03-07 07:51:18 +05:30
WriteGedcom.py\
WritePkg.py\
2003-05-24 04:41:38 +05:30
WriteCD.py\
rel_ru.py\
eval.py\
leak.py\
SimpleBookTitle.py\
CustomBookText.py\
RelGraph.py\
rel_it.py\
rel_hu.py\
rel_de.py
2003-03-07 07:51:18 +05:30
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\
desbrowse.glade\
eventcmp.glade\
gedcomexport.glade\
gedcomimport.glade\
merge.glade\
pafexport.glade\
patchnames.glade\
pkgexport.glade\
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\
writeftree.glade
2002-10-20 19:55:16 +05:30
pkgdatadir = $(datadir)/@PACKAGE@/plugins
dist_pkgdata_DATA = $(GLADEFILES)
2002-10-20 19:55:16 +05:30
GRAMPS_PY_MODPATH = "../:../docgen"
2002-10-20 19:55:16 +05:30
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));