3360368431
* src/DataViews/Makefile.am: Clean byte-compiled files. * src/GrampsDb/Makefile.am: Clean byte-compiled files. * src/Config/Makefile.am: Clean byte-compiled files. * src/RelLib/Makefile.am: Clean byte-compiled files. * src/Editors/Makefile.am: Clean byte-compiled files. * src/plugins/Makefile.am: Clean byte-compiled files. * src/ObjectSelector/Makefile.am: Clean byte-compiled files. * src/TreeViews/Makefile.am: Clean byte-compiled files. * src/Models/Makefile.am: Clean byte-compiled files. * src/Mime/Makefile.am: Clean byte-compiled files. * src/GrampsLogger/Makefile.am: Clean byte-compiled files. * src/PluginUtils/Makefile.am: Clean byte-compiled files. * src/docgen/Makefile.am: Clean byte-compiled files. * src/DateHandler/Makefile.am: Clean byte-compiled files. svn: r6295
46 lines
968 B
Makefile
46 lines
968 B
Makefile
# This is the src/RelLib 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@/GrampsDb
|
|
|
|
pkgdata_PYTHON = \
|
|
_DbUtils.py \
|
|
_GedcomInfo.py\
|
|
_GedTokens.py\
|
|
_GrampsBSDDB.py\
|
|
_GrampsDbBase.py\
|
|
_GrampsDBCallback.py\
|
|
_GrampsDbExceptions.py\
|
|
_GrampsDbFactories.py\
|
|
_GrampsGEDDB.py\
|
|
_GrampsInMemDB.py\
|
|
_GrampsXMLDB.py\
|
|
__init__.py\
|
|
_ReadGedcom.py\
|
|
_ReadGrdb.py\
|
|
_ReadXML.py\
|
|
_WriteGedcom.py\
|
|
_WriteGrdb.py\
|
|
_WriteXML.py\
|
|
_ConstXML.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/GrampsDb
|
|
pkgpythondir = @pkgpythondir@/GrampsDb
|
|
|
|
GLADEFILES = \
|
|
gedcomimport.glade\
|
|
gedcomexport.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));
|