gramps/src/DateHandler/Makefile.am

54 lines
1.1 KiB
Makefile
Raw Normal View History

2006-03-08 01:09:17 +00:00
# This is the src/DateHandler level Makefile for Gramps
# We could use GNU make's ':=' syntax for nice wildcard use,
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
2006-03-08 01:09:17 +00:00
pkgdatadir = $(datadir)/@PACKAGE@/DateHandler
pkgdata_PYTHON = \
2010-03-12 08:33:53 +00:00
_Date_bg.py\
_Date_ca.py\
_Date_cs.py\
2006-03-08 01:09:17 +00:00
_Date_de.py\
_Date_es.py\
_Date_fi.py\
_Date_fr.py\
2010-03-12 08:33:53 +00:00
_Date_hr.py\
_Date_it.py\
_Date_lt.py\
_Date_nb.py\
2006-03-08 01:09:17 +00:00
_Date_nl.py\
_Date_pl.py\
_Date_pt.py\
_Date_ru.py\
_Date_sk.py\
_Date_sl.py\
_Date_sr.py\
_Date_sv.py\
2006-03-08 01:23:15 +00:00
_DateDisplay.py\
_DateParser.py\
_DateHandler.py\
_DateUtils.py\
2006-03-08 01:09:17 +00:00
__init__.py
2006-03-08 01:09:17 +00:00
pkgpyexecdir = @pkgpyexecdir@/DateHandler
pkgpythondir = @pkgpythondir@/DateHandler
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = ".."
docfiles=\
_DateDisplay.py\
_DateParser.py\
_DateHandler.py\
_DateUtils.py
docs:
export PYTHONPATH='..'; epydoc --graph=umlclasstree -o ../html --url http://gramps-project.org --name GRAMPS --html $(docfiles)
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));