gramps/src/plugins/Makefile.am
Alex Roitman 33e69e8d45 * src/plugins/SoundGen.py: Window management. Replaces soundgen.py.
* src/plugins/soundgen.py: Remove from CVS.
* src/plugins/soundex.glade: Define event handler.
* src/plugins/RelCalc.py: Window management.
* src/plugins/relcalc.glade: Define event handler.
* src/plugins/Makefile.am: Ship SoundGen.py instead of soundgen.py.
* src/plugins/Verify.py: Window management.
* src/plugins/verify.glade: Define event handler.


svn: r3154
2004-05-11 01:51:56 +00:00

85 lines
1.5 KiB
Makefile

# 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.
# If not using GNU make, then list all .py files individually
pkgpython_PYTHON = \
AncestorChart.py\
AncestorChart2.py\
AncestorReport.py\
Ancestors.py\
BookReport.py\
ChangeTypes.py\
Check.py\
CountAncestors.py\
Desbrowser.py\
DescendReport.py\
DesGraph.py\
DetAncestralReport.py\
DetDescendantReport.py\
EventCmp.py\
FamilyGroup.py\
FanChart.py\
FtmStyleAncestors.py\
FtmStyleDescendants.py\
FilterEditor.py\
GraphViz.py\
IndivComplete.py\
IndivSummary.py\
Merge.py\
PatchNames.py\
ReadGedcom.py\
ReadPkg.py\
ReadNative.py\
RelCalc.py\
ReorderIds.py\
SoundGen.py\
Summary.py\
TimeLine.py\
Verify.py\
WebPage.py\
WriteFtree.py\
WriteGedcom.py\
WritePkg.py\
WriteCD.py\
rel_ru.py\
eval.py\
leak.py\
SimpleBookTitle.py\
CustomBookText.py\
RelGraph.py\
rel_it.py\
rel_hu.py\
rel_de.py
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = @pkgpythondir@/plugins
GLADEFILES = \
changetype.glade\
desbrowse.glade\
eventcmp.glade\
gedcomexport.glade\
gedcomimport.glade\
merge.glade\
patchnames.glade\
pkgexport.glade\
relcalc.glade\
soundex.glade\
summary.glade\
verify.glade\
cdexport.glade\
eval.glade\
leak.glade\
book.glade\
writeftree.glade
pkgdatadir = $(datadir)/@PACKAGE@/plugins
dist_pkgdata_DATA = $(GLADEFILES)
GRAMPS_PY_MODPATH = "../:../docgen"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));