2008-05-09 01:19:50 +05:30
|
|
|
# This is the src/widgets 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
|
|
|
|
|
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/widgets
|
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
|
|
|
__init__.py \
|
2008-05-11 21:52:14 +05:30
|
|
|
buttons.py \
|
|
|
|
expandcollapsearrow.py \
|
|
|
|
labels.py \
|
|
|
|
linkbox.py \
|
2009-02-03 03:25:22 +05:30
|
|
|
menutoolbuttonaction.py \
|
2008-05-11 21:52:14 +05:30
|
|
|
monitoredwidgets.py \
|
2008-06-03 02:19:34 +05:30
|
|
|
shortlistcomboentry.py \
|
|
|
|
springseparator.py \
|
2008-05-11 21:52:14 +05:30
|
|
|
statusbar.py \
|
2008-05-09 01:19:50 +05:30
|
|
|
styledtextbuffer.py \
|
2008-05-11 21:52:14 +05:30
|
|
|
styledtexteditor.py \
|
2008-06-03 02:19:34 +05:30
|
|
|
toolcomboentry.py \
|
|
|
|
validatedcomboentry.py \
|
|
|
|
validatedmaskedentry.py \
|
|
|
|
valueaction.py \
|
|
|
|
valuetoolitem.py
|
2008-05-09 01:19:50 +05:30
|
|
|
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/widgets
|
|
|
|
pkgpythondir = @pkgpythondir@/widgets
|
|
|
|
|
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
|
|
|
GRAMPS_PY_MODPATH = "../"
|
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
|
|
pychecker $(pkgdata_PYTHON));
|
2008-05-11 21:52:14 +05:30
|
|
|
|