dc9f03b6c0
* src/ViewManager.py: remove unused functions, add alt actions left/right * src/GrampsDb: deleted with _GrampsDbWriteXML.py, _GrampsDbFactories.py, _GrampsGEDDB.py, _GrampsXMLDB.py, __init__.py, Makefile.am, _GrampsInMemDB.py, _GrampsBSDDB.py. No more inmemory databases * src/GrampsDbUtils: moved here _GrampsDbWriteXML.py and _GrampsBSDDB.py * src/plugins/ReadGrdb.py: * src/plugins/Checkpoint.py: * src/ObjectSelector/_ObjectSelectorWindow.py: * src/DbManager.py: * src/GrampsDbUtils/_WriteGrdb.py: * src/GrampsDbUtils/__init__.py: * src/GrampsDbUtils/_GrampsDbWRFactories.py: * src/GrampsDbUtils/_WriteXML.py: * src/GrampsDbUtils/Makefile.am: * src/gramps_main.py: * src/RecentFiles.py: recent-files-gramps.xml, don't overwrite 2.2.x data * src/ArgHandler.py: * src/DbLoader.py: remove unused functions * src/Makefile.am: * po/POTFILES.in: * src/GrampsDbUtils/importdbdir.py: allow import of new database via cli Remove inMem Editing, move remaining to DbUtils, fix ArgHandler svn: r9613
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# This is the src/GrampsDbUtils 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
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/GrampsDbUtils
|
|
|
|
pkgdata_PYTHON = \
|
|
_Backup.py\
|
|
_GedcomChar.py\
|
|
_GedcomInfo.py\
|
|
_GedcomLex.py\
|
|
_GedcomParse.py\
|
|
_GedcomStageOne.py\
|
|
_GedcomTokens.py\
|
|
_GedcomUtils.py\
|
|
_GrampsBSDDB.py\
|
|
_GrampsDbWRFactories.py\
|
|
_GrampsDbWriteXML.py\
|
|
importdbdir.py\
|
|
__init__.py\
|
|
_ReadGedcom.py\
|
|
_ReadXML.py\
|
|
_WriteGedcom.py\
|
|
_WriteGrdb.py\
|
|
_WriteXML.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/GrampsDbUtils
|
|
pkgpythondir = @pkgpythondir@/GrampsDbUtils
|
|
|
|
GLADEFILES = \
|
|
gedcomimport.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));
|
|
|
|
pylint:
|
|
(export PYTHONPATH=..:.; pylint --rcfile=pylintrc _GedcomParse.py)
|