2007-10-04 05:03:56 +05:30
|
|
|
# This is the src/RelLib level Makefile for Gramps
|
2011-12-06 22:26:50 +05:30
|
|
|
# $Id$
|
2007-10-04 05:03:56 +05:30
|
|
|
# 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
|
|
|
|
|
2008-02-21 10:28:56 +05:30
|
|
|
SUBDIRS = \
|
2012-05-26 04:49:10 +05:30
|
|
|
datehandler \
|
2010-01-14 09:38:04 +05:30
|
|
|
db \
|
2010-01-22 23:29:54 +05:30
|
|
|
display \
|
2012-05-24 22:54:47 +05:30
|
|
|
filters \
|
2010-01-25 01:47:14 +05:30
|
|
|
lib \
|
2012-05-31 21:20:40 +05:30
|
|
|
locale \
|
2012-05-27 02:54:01 +05:30
|
|
|
merge \
|
2010-01-25 01:47:14 +05:30
|
|
|
mime \
|
2010-01-14 09:38:04 +05:30
|
|
|
plug \
|
|
|
|
proxy \
|
2012-06-01 05:16:57 +05:30
|
|
|
simple \
|
2008-02-21 10:28:56 +05:30
|
|
|
utils
|
2007-10-04 05:03:56 +05:30
|
|
|
|
2012-02-11 01:55:15 +05:30
|
|
|
pkgpythondir = $(datadir)/@PACKAGE@/gen
|
2007-10-04 05:03:56 +05:30
|
|
|
|
2012-02-11 01:55:15 +05:30
|
|
|
pkgpython_PYTHON = \
|
2010-01-11 01:51:10 +05:30
|
|
|
__init__.py \
|
2010-01-18 10:12:17 +05:30
|
|
|
ggettext.py \
|
2011-10-29 10:32:33 +05:30
|
|
|
updatecallback.py \
|
|
|
|
user.py
|
2007-10-04 05:03:56 +05:30
|
|
|
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/gen
|
|
|
|
|
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
2012-02-11 01:55:15 +05:30
|
|
|
pychecker $(pkgpython_PYTHON));
|