2002-10-20 14:25:16 +00:00
|
|
|
# This is the src/plugins level Makefile for Gramps
|
2003-05-21 00:30:02 +00:00
|
|
|
# We could use GNU make's ':=' syntax for nice wildcard use,
|
|
|
|
# but that is not necessarily portable.
|
2002-10-20 14:25:16 +00:00
|
|
|
# If not using GNU make, then list all .py files individually
|
2004-05-27 04:29:43 +00:00
|
|
|
|
2009-01-16 16:46:40 +00:00
|
|
|
SUBDIRS = \
|
2009-01-18 05:00:57 +00:00
|
|
|
docgen \
|
2009-01-16 21:39:51 +00:00
|
|
|
drawreport \
|
2009-01-17 23:32:20 +00:00
|
|
|
export \
|
2009-01-16 23:03:35 +00:00
|
|
|
gramplet \
|
2009-01-17 23:32:20 +00:00
|
|
|
graph \
|
|
|
|
import \
|
2009-01-16 21:39:51 +00:00
|
|
|
quickview \
|
2009-01-16 19:54:58 +00:00
|
|
|
rel \
|
2009-01-17 23:32:20 +00:00
|
|
|
textreport \
|
|
|
|
tool \
|
|
|
|
webreport
|
2009-01-16 16:46:40 +00:00
|
|
|
|
2004-05-27 04:29:43 +00:00
|
|
|
pkgdatadir = $(datadir)/@PACKAGE@/plugins
|
|
|
|
|
|
|
|
pkgdata_PYTHON = \
|
2006-06-04 18:24:51 +00:00
|
|
|
BookReport.py\
|
2006-02-20 04:59:20 +00:00
|
|
|
Calendar.py \
|
2008-11-04 04:12:51 +00:00
|
|
|
ExportXml.py\
|
2008-10-21 04:22:45 +00:00
|
|
|
ImportGpkg.py\
|
2008-11-04 04:12:51 +00:00
|
|
|
ImportXml.py\
|
2008-12-31 22:01:03 +00:00
|
|
|
Records.py\
|
2009-01-19 20:26:41 +00:00
|
|
|
WebCal.py
|
2007-11-20 11:46:19 +00:00
|
|
|
|
2002-10-20 14:25:16 +00:00
|
|
|
pkgpyexecdir = @pkgpyexecdir@/plugins
|
|
|
|
pkgpythondir = @pkgpythondir@/plugins
|
|
|
|
|
2003-03-07 02:21:18 +00:00
|
|
|
GLADEFILES = \
|
2009-01-17 23:32:20 +00:00
|
|
|
book.glade
|
2002-10-20 14:25:16 +00:00
|
|
|
|
2006-03-04 02:56:23 +00:00
|
|
|
GRAPHICS =
|
2005-03-31 13:16:20 +00:00
|
|
|
|
2006-02-20 04:59:20 +00:00
|
|
|
DATAFILES = \
|
|
|
|
holidays.xml
|
|
|
|
|
|
|
|
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
|
2002-10-20 14:25:16 +00:00
|
|
|
|
2006-04-10 01:02:50 +00:00
|
|
|
# Clean up all the byte-compiled files
|
|
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
|
2003-05-21 00:30:02 +00:00
|
|
|
GRAMPS_PY_MODPATH = "../:../docgen"
|
2002-10-20 14:25:16 +00:00
|
|
|
|
2003-05-21 00:30:02 +00:00
|
|
|
pycheck:
|
|
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
2004-10-06 19:16:26 +00:00
|
|
|
pychecker $(pkgdata_PYTHON));
|