2009-01-17 03:09:51 +05:30
|
|
|
# This is the src/plugins/tool level Makefile for Gramps
|
2009-01-17 01:24:58 +05:30
|
|
|
# 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
|
|
|
|
|
2009-01-17 02:40:36 +05:30
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/plugins/tool
|
2009-01-17 01:24:58 +05:30
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
|
|
|
CalculateEstimatedDates.py \
|
|
|
|
ChangeNames.py \
|
|
|
|
ChangeTypes.py \
|
|
|
|
Check.py \
|
|
|
|
Desbrowser.py \
|
|
|
|
Eval.py \
|
|
|
|
EventCmp.py \
|
|
|
|
EventNames.py \
|
|
|
|
ExtractCity.py \
|
|
|
|
FindDupes.py \
|
|
|
|
Leak.py \
|
|
|
|
MediaManager.py \
|
|
|
|
NotRelated.py \
|
|
|
|
OwnerEditor.py \
|
|
|
|
PatchNames.py \
|
|
|
|
Rebuild.py \
|
|
|
|
RebuildRefMap.py \
|
|
|
|
RelCalc.py \
|
|
|
|
RemoveUnused.py \
|
|
|
|
ReorderIds.py \
|
|
|
|
SortEvents.py \
|
|
|
|
SoundGen.py \
|
|
|
|
Verify.py
|
|
|
|
# DumpGenderStats.py \
|
|
|
|
# PHPGedViewConnector.py \
|
2009-01-20 01:56:41 +05:30
|
|
|
# TestcaseGenerator.py
|
2009-01-17 01:24:58 +05:30
|
|
|
|
2009-01-17 02:40:36 +05:30
|
|
|
pkgpyexecdir = @pkgpyexecdir@/plugins/tool
|
|
|
|
pkgpythondir = @pkgpythondir@/plugins/tool
|
2009-01-17 01:24:58 +05:30
|
|
|
|
|
|
|
GLADEFILES = \
|
|
|
|
changenames.glade \
|
|
|
|
changetype.glade \
|
|
|
|
desbrowse.glade \
|
|
|
|
eval.glade \
|
|
|
|
eventcmp.glade \
|
|
|
|
leak.glade \
|
|
|
|
merge.glade \
|
|
|
|
NotRelated.glade \
|
|
|
|
ownereditor.glade \
|
|
|
|
patchnames.glade \
|
|
|
|
relcalc.glade \
|
|
|
|
soundex.glade \
|
|
|
|
summary.glade \
|
|
|
|
unused.glade \
|
|
|
|
verify.glade
|
|
|
|
|
|
|
|
dist_pkgdata_DATA = $(GLADEFILES)
|
|
|
|
|
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
|
|
|
GRAMPS_PY_MODPATH = "../../"
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
|
|
pychecker $(pkgdata_PYTHON));
|