gramps/src/gen/Makefile.am

38 lines
680 B
Makefile
Raw Normal View History

2007-10-04 05:03:56 +05:30
# This is the src/RelLib level Makefile for Gramps
# $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
SUBDIRS = \
datehandler \
db \
2010-01-22 23:29:54 +05:30
display \
filters \
lib \
locale \
merge \
mime \
plug \
proxy \
utils
2007-10-04 05:03:56 +05:30
pkgpythondir = $(datadir)/@PACKAGE@/gen
2007-10-04 05:03:56 +05:30
pkgpython_PYTHON = \
__init__.py \
ggettext.py \
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); \
pychecker $(pkgpython_PYTHON));