gramps/src/plugins/Makefile.am

53 lines
945 B
Makefile
Raw Normal View History

2002-10-20 14:25:16 +00:00
# This is the src/plugins level Makefile for Gramps
# $Id$
# 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 \
mapservices \
quickview \
rel \
sidebar \
textreport \
tool \
view \
webreport \
webstuff
pkgdatadir = $(datadir)/@PACKAGE@/plugins
pkgpython_PYTHON = \
bookreport.gpr.py\
BookReport.py\
records.gpr.py\
Records.py
2002-10-20 14:25:16 +00:00
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = $(datadir)/@PACKAGE@/plugins
2002-10-20 14:25:16 +00:00
2003-03-07 02:21:18 +00:00
GLADEFILES = \
bookreport.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 $(pkgpython_PYTHON));