svn: r9074

This commit is contained in:
Don Allingham
2007-10-03 23:33:56 +00:00
parent cd67c7b13d
commit 126ddc2e9a
5 changed files with 51 additions and 131 deletions

24
src/gen/Makefile.am Normal file
View File

@@ -0,0 +1,24 @@
# This is the src/RelLib level Makefile for Gramps
# We could use GNU make's ':=' syntax for nice wildcard use,
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
SUBDIRS = proxy
pkgdatadir = $(datadir)/@PACKAGE@/gen
pkgdata_PYTHON = \
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen
pkgpythondir = @pkgpythondir@/gen
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));

27
src/gen/proxy/Makefile.am Normal file
View File

@@ -0,0 +1,27 @@
# This is the src/RelLib level Makefile for Gramps
# We could use GNU make's ':=' syntax for nice wildcard use,
# but that is not necessarily portable.
# If not using GNU make, then list all .py files individually
pkgdatadir = $(datadir)/@PACKAGE@/proxy
pkgdata_PYTHON = \
__init__.py \
dbbase.py \
filter.py \
living.py \
private.py \
proxybase.py
pkgpyexecdir = @pkgpyexecdir@/gen
pkgpythondir = @pkgpythondir@/gen
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));