53c9c30890
svn: r18851
89 lines
1.5 KiB
Makefile
89 lines
1.5 KiB
Makefile
# This is the src/gen/lib level Makefile for Gramps
|
|
# $Id$
|
|
# 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
|
|
|
|
pkgpythondir = $(datadir)/@PACKAGE@/gen/lib
|
|
|
|
pkgpython_PYTHON = \
|
|
addressbase.py \
|
|
address.py \
|
|
attrbase.py \
|
|
attribute.py \
|
|
attrtype.py \
|
|
baseobj.py \
|
|
calendar.py \
|
|
childref.py \
|
|
childreftype.py \
|
|
citation.py \
|
|
citationbase.py \
|
|
const.py \
|
|
datebase.py \
|
|
date.py \
|
|
event.py \
|
|
eventref.py \
|
|
eventroletype.py \
|
|
eventtype.py \
|
|
family.py \
|
|
familyreltype.py \
|
|
genderstats.py \
|
|
grampstype.py \
|
|
__init__.py \
|
|
ldsordbase.py \
|
|
ldsord.py \
|
|
locationbase.py \
|
|
location.py \
|
|
markertype.py \
|
|
mediabase.py \
|
|
mediaobj.py \
|
|
mediaref.py \
|
|
name.py \
|
|
nametype.py \
|
|
nameorigintype.py \
|
|
notebase.py \
|
|
note.py \
|
|
notetype.py \
|
|
person.py \
|
|
personref.py \
|
|
placebase.py \
|
|
place.py \
|
|
primaryobj.py \
|
|
privacybase.py \
|
|
privsrcnote.py \
|
|
refbase.py \
|
|
repo.py \
|
|
reporef.py \
|
|
repotype.py \
|
|
researcher.py \
|
|
secondaryobj.py \
|
|
srcmediatype.py \
|
|
srcnote.py \
|
|
src.py \
|
|
surname.py \
|
|
surnamebase.py \
|
|
styledtext.py \
|
|
styledtexttag.py \
|
|
styledtexttagtype.py \
|
|
tableobj.py \
|
|
tag.py \
|
|
tagbase.py \
|
|
urlbase.py \
|
|
url.py \
|
|
urltype.py \
|
|
witness.py
|
|
|
|
pkgpyexecdir = @pkgpyexecdir@/gen/lib
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
GRAMPS_PY_MODPATH = "../../"
|
|
|
|
pycheck:
|
|
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
|
|
pychecker $(pkgpython_PYTHON));
|
|
|
|
pylint:
|
|
pylint --disable-msg=W0403,C0103 $(pkgpython_PYTHON)
|