1b473c8178
* src/ReportBase/Makefile.am (pkgdata_PYTHON): Remove _BookReport.py * src/plugins/Makefile.am (pkgdata_PYTHON): Move BookReport.py svn: r6857
37 lines
757 B
Makefile
37 lines
757 B
Makefile
# This is the src/Report level Makefile for Gramps
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/ReportBase
|
|
|
|
pkgdata_PYTHON = \
|
|
_BareReportDialog.py\
|
|
_BookFormatComboBox.py\
|
|
_CommandLineReport.py\
|
|
_Constants.py\
|
|
_DrawFormatComboBox.py\
|
|
_DrawReportDialog.py\
|
|
_FileEntry.py\
|
|
__init__.py\
|
|
_PaperMenu.py\
|
|
_PrintTools.py\
|
|
_ReportDialog.py\
|
|
_ReportUtils.py\
|
|
_ReportOptions.py\
|
|
_Report.py\
|
|
_StyleComboBox.py\
|
|
_StyleEditor.py\
|
|
_TemplateParser.py\
|
|
_TextFormatComboBox.py\
|
|
_TextReportDialog.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/ReportBase
|
|
pkgpythondir = @pkgpythondir@/ReportBase
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgdata_PYTHON));
|