gramps/src/plugins/Makefile.am

52 lines
928 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 \
mapservices \
quickview \
rel \
sidebar \
textreport \
tool \
view \
webreport \
webstuff
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgdata_PYTHON = \
bookreport.gpr.py\
BookReport.py\
records.gpr.py\
Records.py
2002-10-20 19:55:16 +05:30
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = @pkgpythondir@/plugins
2003-03-07 07:51:18 +05:30
GLADEFILES = \
bookreport.glade
2002-10-20 19:55:16 +05:30
2006-03-04 08:26:23 +05:30
GRAPHICS =
DATAFILES =
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));