2009-12-14 08:50:19 +05:30
|
|
|
# This is the src/gui/widgets level Makefile for Gramps
|
2008-05-09 01:19:50 +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
|
|
|
|
|
2009-12-14 08:50:19 +05:30
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/gui/widgets
|
2008-05-09 01:19:50 +05:30
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
|
|
|
__init__.py \
|
2008-05-11 21:52:14 +05:30
|
|
|
buttons.py \
|
|
|
|
expandcollapsearrow.py \
|
2010-02-07 17:50:25 +05:30
|
|
|
grampletpane.py \
|
2008-05-11 21:52:14 +05:30
|
|
|
labels.py \
|
|
|
|
linkbox.py \
|
2009-02-03 03:25:22 +05:30
|
|
|
menutoolbuttonaction.py \
|
2008-05-11 21:52:14 +05:30
|
|
|
monitoredwidgets.py \
|
2010-08-16 16:50:45 +05:30
|
|
|
multitreeview.py \
|
2010-01-06 10:57:28 +05:30
|
|
|
progressdialog.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 \
|
2010-08-30 00:06:42 +05:30
|
|
|
tageditor.py \
|
2008-06-03 02:19:34 +05:30
|
|
|
toolcomboentry.py \
|
2010-08-16 17:14:26 +05:30
|
|
|
undoablebuffer.py \
|
2010-08-31 04:30:28 +05:30
|
|
|
undoableentry.py \
|
|
|
|
undoablestyledbuffer.py \
|
2008-06-03 02:19:34 +05:30
|
|
|
validatedcomboentry.py \
|
|
|
|
validatedmaskedentry.py \
|
|
|
|
valueaction.py \
|
|
|
|
valuetoolitem.py
|
2008-05-09 01:19:50 +05:30
|
|
|
|
2009-12-14 08:50:19 +05:30
|
|
|
pkgpyexecdir = @pkgpyexecdir@/gui/widgets
|
|
|
|
pkgpythondir = @pkgpythondir@/gui/widgets
|
2008-05-09 01:19:50 +05:30
|
|
|
|
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
2009-12-14 08:50:19 +05:30
|
|
|
GRAMPS_PY_MODPATH = "../../"
|
2008-05-09 01:19:50 +05:30
|
|
|
|
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
|
|
pychecker $(pkgdata_PYTHON));
|
2008-05-11 21:52:14 +05:30
|
|
|
|