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