gramps/src/plugins/Makefile.am

51 lines
901 B
Makefile
Raw Normal View History

2002-10-20 19:55:16 +05:30
# 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 19:55:16 +05:30
# 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\
2009-01-20 01:56:41 +05:30
WebCal.py
2002-10-20 19:55:16 +05:30
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = @pkgpythondir@/plugins
2003-03-07 07:51:18 +05:30
GLADEFILES = \
book.glade
2002-10-20 19:55:16 +05:30
2006-03-04 08:26:23 +05:30
GRAPHICS =
DATAFILES = \
holidays.xml
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
2002-10-20 19:55:16 +05:30
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../:../docgen"
2002-10-20 19:55:16 +05:30
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));