1) add SVN svn:keywords "Id" property if it didn't have it 2) add SVN svn:mime-type "text/plain" property if it didn't have it 3) add SVN "Id" line to the file if it had none svn: r18554
30 lines
638 B
Makefile
30 lines
638 B
Makefile
# This is the src/gui/plug/report level Makefile for Gramps
|
|
# $Id$
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/gui/plug/report
|
|
|
|
pkgdata_PYTHON = \
|
|
__init__.py\
|
|
_docreportdialog.py\
|
|
_drawreportdialog.py\
|
|
_fileentry.py\
|
|
_graphvizreportdialog.py\
|
|
_papermenu.py\
|
|
_reportdialog.py\
|
|
_stylecombobox.py\
|
|
_styleeditor.py\
|
|
_textreportdialog.py\
|
|
_webreportdialog.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/gui/plug/report
|
|
pkgpythondir = @pkgpythondir@/gui/plug/report
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
GRAMPS_PY_MODPATH = "../../../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgdata_PYTHON));
|