2002-10-20 19:55:16 +05:30
|
|
|
# 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
|
2003-03-07 07:51:18 +05:30
|
|
|
|
2004-10-07 00:46:26 +05:30
|
|
|
docgendir=$(prefix)/share/gramps/docgen
|
2004-05-27 09:59:43 +05:30
|
|
|
|
|
|
|
docgen_PYTHON = \
|
2004-02-29 05:34:45 +05:30
|
|
|
AsciiDoc.py\
|
2003-03-07 07:51:18 +05:30
|
|
|
HtmlDoc.py\
|
|
|
|
LaTeXDoc.py\
|
2006-03-01 01:24:35 +05:30
|
|
|
ODFDoc.py\
|
2006-04-30 09:47:54 +05:30
|
|
|
ODSDoc.py\
|
2006-03-16 05:28:23 +05:30
|
|
|
SpreadSheetDoc.py\
|
2003-03-07 07:51:18 +05:30
|
|
|
PdfDoc.py\
|
|
|
|
PSDrawDoc.py\
|
|
|
|
RTFDoc.py\
|
2004-03-17 07:20:50 +05:30
|
|
|
SvgDrawDoc.py\
|
|
|
|
LPRDoc.py
|
2003-03-07 07:51:18 +05:30
|
|
|
|
2006-04-10 06:32:50 +05:30
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
2003-05-21 06:00:02 +05:30
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
2004-10-07 00:46:26 +05:30
|
|
|
pychecker $(docgen_PYTHON));
|