* src/docgen/Makefile.am: Remove extra DESTDIR, correct pycheck target. * src/plugins/Makefile.am: Correct pycheck target. svn: r3600
26 lines
515 B
Makefile
26 lines
515 B
Makefile
# This is the src/docgen level Makefile for Gramps
|
|
# Use GNU make's ':=' syntax for nice wildcard use.
|
|
# If not using GNU make, then list all .py files individually
|
|
|
|
docgendir=$(prefix)/share/gramps/docgen
|
|
|
|
docgen_PYTHON = \
|
|
AbiWord2Doc.py\
|
|
AsciiDoc.py\
|
|
HtmlDoc.py\
|
|
KwordDoc.py\
|
|
LaTeXDoc.py\
|
|
OpenOfficeDoc.py\
|
|
OpenSpreadSheet.py\
|
|
PdfDoc.py\
|
|
PSDrawDoc.py\
|
|
RTFDoc.py\
|
|
SvgDrawDoc.py\
|
|
LPRDoc.py
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(docgen_PYTHON));
|