f30c137391
* Python verification (pychecker) removed from check-local target to become part of the pycheck target heiarchy. Each subdir now has a GRAMPS_PY_MODPATH variable that indicates a colon-separated path for the PYTHONPATH environment to allow module importing to work. svn: r1559
21 lines
326 B
Makefile
21 lines
326 B
Makefile
# copyright (C) 2000 Sun Microsystems, Inc.
|
|
|
|
SUBDIRS = src doc example
|
|
|
|
EXTRA_DIST = autogen.sh gramps.spec.in COPYING-DOCS
|
|
|
|
bin_SCRIPTS = gramps
|
|
|
|
gramps: gramps.sh
|
|
cp gramps.sh gramps
|
|
|
|
dist-hook: gramps.spec
|
|
cp gramps.spec $(distdir)
|
|
|
|
.PHONY: pycheck trans
|
|
|
|
pycheck:
|
|
(cd src; make pycheck)
|
|
trans:
|
|
(cd src; make trans)
|