2009-06-16 00:32:15 +05:30
|
|
|
# This is the src/RelLib 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
|
|
|
|
|
|
|
|
SUBDIRS = \
|
2009-12-15 11:26:12 +05:30
|
|
|
editors \
|
2009-12-15 09:15:09 +05:30
|
|
|
selectors \
|
2009-12-14 18:18:27 +05:30
|
|
|
views \
|
|
|
|
widgets
|
2009-06-16 00:32:15 +05:30
|
|
|
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/gui
|
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
2009-06-19 03:26:37 +05:30
|
|
|
__init__.py \
|
2010-02-01 12:31:45 +05:30
|
|
|
columnorder.py \
|
|
|
|
configure.py \
|
2009-08-05 16:02:05 +05:30
|
|
|
dbguielement.py \
|
2009-06-19 03:26:37 +05:30
|
|
|
dbloader.py \
|
|
|
|
dbman.py \
|
2010-01-14 10:28:30 +05:30
|
|
|
filtereditor.py \
|
2009-06-19 03:26:37 +05:30
|
|
|
grampsgui.py \
|
2009-10-26 00:13:01 +05:30
|
|
|
pluginmanager.py \
|
2010-04-04 23:46:03 +05:30
|
|
|
sidebar.py \
|
2009-06-21 11:56:51 +05:30
|
|
|
utils.py \
|
2009-06-19 03:26:37 +05:30
|
|
|
viewmanager.py
|
2009-06-16 00:32:15 +05:30
|
|
|
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/gui
|
|
|
|
pkgpythondir = @pkgpythondir@/gui
|
|
|
|
|
|
|
|
|
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
|
|
pychecker $(pkgdata_PYTHON));
|