dc434a5736
* 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
26 lines
650 B
Makefile
26 lines
650 B
Makefile
# This is the src/GrampsLogger 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@/GrampsLogger
|
|
|
|
pkgdata_PYTHON = \
|
|
_ErrorReportAssistant.py\
|
|
_ErrorView.py\
|
|
_GtkHandler.py\
|
|
__init__.py\
|
|
_RotateHandler.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/GrampsLogger
|
|
pkgpythondir = @pkgpythondir@/GrampsLogger
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgdata_PYTHON));
|