gramps/src/Editors/Makefile.am

45 lines
983 B
Makefile
Raw Normal View History

2006-03-04 12:04:48 +05:30
# This is the src/Editors 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@/Editors
pkgdata_PYTHON = \
__init__.py\
_EditAddress.py \
_EditAttribute.py \
_EditChildRef.py \
2006-03-04 12:04:48 +05:30
_EditEvent.py \
_EditEventRef.py \
_EditFamily.py \
2006-04-04 23:37:23 +05:30
_EditLdsOrd.py \
2006-03-04 12:04:48 +05:30
_EditLocation.py \
_EditMedia.py \
_EditMediaRef.py \
_EditName.py \
_EditPerson.py \
2006-04-13 21:50:57 +05:30
_EditPersonRef.py \
2006-03-04 12:04:48 +05:30
_EditPlace.py \
_EditPrimary.py \
2006-03-05 07:33:56 +05:30
_EditReference.py \
2006-03-04 12:04:48 +05:30
_EditRepository.py \
_EditRepoRef.py \
2006-03-04 12:04:48 +05:30
_EditSecondary.py \
_EditSource.py \
_EditSourceRef.py \
_EditNote.py \
2006-03-04 12:04:48 +05:30
_EditUrl.py
pkgpyexecdir = @pkgpyexecdir@/Editors
pkgpythondir = @pkgpythondir@/Editors
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
2006-03-04 12:04:48 +05:30
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgdata_PYTHON));