gramps/src/plugins/Makefile.am

49 lines
874 B
Makefile
Raw Normal View History

2002-10-20 14:25:16 +00:00
# This is the src/plugins level Makefile for Gramps
# 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
SUBDIRS = \
docgen \
drawreport \
export \
gramplet \
graph \
import \
lib \
quickview \
rel \
textreport \
tool \
webreport
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgdata_PYTHON = \
BookReport.py\
ExportXml.py\
ImportGpkg.py\
ImportXml.py\
Records.py
2002-10-20 14:25:16 +00:00
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = @pkgpythondir@/plugins
2003-03-07 02:21:18 +00:00
GLADEFILES = \
book.glade
2002-10-20 14:25:16 +00:00
2006-03-04 02:56:23 +00:00
GRAPHICS =
DATAFILES =
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
2002-10-20 14:25:16 +00:00
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../:../docgen"
2002-10-20 14:25:16 +00:00
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));