gramps/gramps2/src/docgen/Makefile.am
Don Allingham 6d8c37f381 * src/Editors/_EditFamily.py: fix Select Person calls
* src/docgen/Makefile.am: add ODSDoc.py
	* po/POTFILES.in: add ODSDoc.py


svn: r6499
2006-04-30 04:17:54 +00:00

32 lines
628 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\
ODFDoc.py\
ODSDoc.py\
OpenOfficeDoc.py\
OpenSpreadSheet.py\
SpreadSheetDoc.py\
PdfDoc.py\
PSDrawDoc.py\
RTFDoc.py\
SvgDrawDoc.py\
LPRDoc.py
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(docgen_PYTHON));