2006-03-08 01:09:17 +00:00
|
|
|
# This is the src/DateHandler level Makefile for Gramps
|
2004-11-16 03:44:23 +00:00
|
|
|
# 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
|
2004-11-16 03:44:23 +00:00
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
2006-03-08 01:09:17 +00:00
|
|
|
_Date_de.py\
|
|
|
|
_Date_ru.py\
|
|
|
|
_Date_lt.py\
|
|
|
|
_Date_fr.py\
|
|
|
|
_Date_es.py\
|
|
|
|
_Date_fi.py\
|
|
|
|
_Date_sv.py\
|
2007-05-14 19:59:59 +00:00
|
|
|
_Date_nb.py\
|
2006-03-08 01:09:17 +00:00
|
|
|
_Date_nl.py\
|
2006-05-01 21:11:26 +00:00
|
|
|
_Date_sk.py\
|
2006-03-08 01:23:15 +00:00
|
|
|
_DateDisplay.py\
|
|
|
|
_DateParser.py\
|
2006-03-11 04:58:58 +00:00
|
|
|
_DateHandler.py\
|
2006-05-14 20:14:59 +00:00
|
|
|
_DateUtils.py\
|
2006-03-08 01:09:17 +00:00
|
|
|
__init__.py
|
2005-06-05 04:01:56 +00:00
|
|
|
|
2006-03-08 01:09:17 +00:00
|
|
|
pkgpyexecdir = @pkgpyexecdir@/DateHandler
|
|
|
|
pkgpythondir = @pkgpythondir@/DateHandler
|
2004-11-16 03:44:23 +00:00
|
|
|
|
2006-04-10 01:02:50 +00:00
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
2004-11-16 03:44:23 +00:00
|
|
|
GRAMPS_PY_MODPATH = ".."
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
|
|
pychecker $(pkgdata_PYTHON));
|