542b1e404d
part 1: remove template from html output svn: r12631
36 lines
726 B
Makefile
36 lines
726 B
Makefile
# This is the src/Report level Makefile for Gramps
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/ReportBase
|
|
|
|
pkgdata_PYTHON = \
|
|
__init__.py\
|
|
_Bibliography.py\
|
|
_CommandLineReport.py\
|
|
_Constants.py\
|
|
_DocReportDialog.py\
|
|
_DrawReportDialog.py\
|
|
_Endnotes.py\
|
|
_FileEntry.py\
|
|
_GraphvizReportDialog.py\
|
|
_PaperMenu.py\
|
|
_Report.py\
|
|
_ReportDialog.py\
|
|
_ReportOptions.py\
|
|
_ReportUtils.py\
|
|
_StyleComboBox.py\
|
|
_StyleEditor.py\
|
|
_TextReportDialog.py\
|
|
_WebReportDialog.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));
|