GEPS 026: Replace 'make' for Gramps build

Remove all makefile in gramps code
Still present: make for doc creation and make for webapp


svn: r20499
This commit is contained in:
Benny Malengier 2012-10-03 08:46:04 +00:00
parent 62ac19b895
commit 91e6df28c1
72 changed files with 0 additions and 2761 deletions

View File

@ -1,33 +0,0 @@
# This is the src level Makefile for Gramps
# $Id$
SUBDIRS = \
cli \
data \
gen \
gui \
images \
plugins
gdirdir=$(prefix)/share/gramps
gdir_PYTHON = gramps.py
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
# Which modules to document
docmodules = RelLib DateHandler GrampsDb Simple BaseDoc #Filters ReportBase GrampsDbUtils
pycheck:
for d in $(SUBDIRS) ; do \
(cd $$d; make pycheck); \
done;
pychecker $(gdir_PYTHON)
docs:
epydoc -v -o html --html --exclude gtk --no-private --show-imports --url=http://gramps-project.org --graph=umlclasstree $(docmodules)
epydoc -v -o pdf --pdf --exclude gtk --no-private --show-imports --url=http://gramps-project.org --graph=umlclasstree $(docmodules)
cmdplug:
./build_cmdplug

View File

@ -1,33 +0,0 @@
# This is the src/DataViews 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
SUBDIRS = \
plug
pkgpythondir = $(datadir)/@PACKAGE@/cli
pkgpython_PYTHON = \
__init__.py \
arghandler.py \
argparser.py \
clidbman.py \
grampscli.py \
user.py
pkgpyexecdir = @pkgpyexecdir@/cli
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));
pylint:
PYTHONPATH=$(GRAMPS_PY_MODPATH) pylint $(pkgpython_PYTHON) > pylint.out

View File

@ -1,23 +0,0 @@
# This is the src/cli/plug 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@/cli/plug
pkgpython_PYTHON = \
__init__.py
pkgpyexecdir = @pkgpyexecdir@/cli/plug
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,46 +0,0 @@
# This is the src/RelLib 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
SUBDIRS = \
datehandler \
db \
display \
filters \
lib \
merge \
mime \
plug \
proxy \
simple \
utils
pkgpythondir = $(datadir)/@PACKAGE@/gen
pkgpython_PYTHON = \
__init__.py \
config.py \
const.py \
constfunc.py \
dbstate.py \
errors.py \
ggettext.py \
recentfiles.py \
relationship.py \
sort.py \
soundex.py \
updatecallback.py \
user.py
pkgpyexecdir = @pkgpyexecdir@/gen
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,54 +0,0 @@
# This is the src/DateHandler 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
pkgpython_PYTHON = \
_date_bg.py\
_date_ca.py\
_date_cs.py\
_date_da.py\
_date_de.py\
_date_es.py\
_date_fi.py\
_date_fr.py\
_date_hr.py\
_date_it.py\
_date_lt.py\
_date_nb.py\
_date_nl.py\
_date_pl.py\
_date_pt.py\
_date_ru.py\
_date_sk.py\
_date_sl.py\
_date_sr.py\
_date_sv.py\
_datedisplay.py\
_dateparser.py\
_datehandler.py\
_dateutils.py\
_grampslocale.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/datehandler
pkgpythondir = $(datadir)/@PACKAGE@/gen/datehandler
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../.."
docfiles=\
_datedisplay.py\
_dateparser.py\
_datehandler.py\
_dateutils.py
docs:
export PYTHONPATH='../..'; epydoc --graph=umlclasstree -o ../html --url http://gramps-project.org --name GRAMPS --html $(docfiles)
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,34 +0,0 @@
# This is the src/gen/db 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/db
pkgpython_PYTHON = \
__init__.py \
backup.py \
base.py \
bsddbtxn.py \
cursor.py \
dbconst.py \
dictionary.py \
exceptions.py \
read.py \
txn.py \
undoredo.py \
upgrade.py \
write.py
pkgpyexecdir = @pkgpyexecdir@/gen/db
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,24 +0,0 @@
# This is the src/gen/display 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/display
pkgpython_PYTHON = \
name.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/display
dist_pkgdata_DATA =
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,25 +0,0 @@
# This is the src/gen/filters level Makefile for Gramps
# $Id$
SUBDIRS = rules
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters
pkgpython_PYTHON = \
_filterlist.py \
_filterparser.py \
_genericfilter.py \
_paramfilter.py \
__init__.py \
_searchfilter.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,47 +0,0 @@
# This is the src/gen/filters/rules level Makefile for Gramps
# $Id$
SUBDIRS = person family event place source media repository note citation
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules
pkgpython_PYTHON = \
_changedsincebase.py\
_everything.py\
_haseventbase.py\
_hasattributebase.py\
_hasgallerybase.py \
_hasgrampsid.py\
_hasldsbase.py \
_hasnotebase.py \
_hasnoteregexbase.py\
_hasnotesubstrbase.py\
_hasreferencecountbase.py \
_hassourcecountbase.py \
_hassourcebase.py \
_hassourceofbase.py \
_hastagbase.py \
_hastextmatchingregexpof.py\
_hastextmatchingsubstringof.py\
__init__.py\
_isprivate.py\
_ispublic.py\
_regexpidbase.py\
_rule.py\
_matchesfilterbase.py\
_matcheseventfilterbase.py \
_matchessourceconfidencebase.py \
_matchessourcefilterbase.py \
_hascitationbase.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,34 +0,0 @@
# This is the src/Filters/Rules/Citation level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/citation
pkgpython_PYTHON = \
__init__.py \
_allcitations.py \
_changedsince.py \
_citationprivate.py \
_hascitation.py \
_hasgallery.py \
_hasidof.py \
_hasnote.py \
_hasnotematchingsubstringof.py \
_hasnoteregexp.py \
_hasreferencecountof.py \
_hassource.py \
_matchesfilter.py \
_matchespagesubstringof.py \
_matchesrepositoryfilter.py \
_matchessourcefilter.py \
_regexpidof.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/citation
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,38 +0,0 @@
# This is the src/Filters/Rules/Event level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/event
pkgpython_PYTHON = \
_changedsince.py\
_matchesfilter.py\
_eventprivate.py\
_hasnoteregexp.py\
_regexpidof.py\
_allevents.py\
_hascitation.py \
_hasdata.py\
_hasgallery.py \
_hasidof.py\
_hasnote.py \
_hassourcecount.py \
_hastype.py\
_hasnotematchingsubstringof.py\
_hasreferencecountof.py\
_matchespersonfilter.py\
_matchessourceconfidence.py\
_matchessourcefilter.py\
_hasattribute.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/event
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,53 +0,0 @@
# This is the src/Filters/Rules/Family level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/family
pkgpython_PYTHON = \
_allfamilies.py\
_changedsince.py\
_familyprivate.py\
_hasevent.py\
_hasattribute.py\
_hascitation.py \
_hasgallery.py \
_hasidof.py\
_haslds.py \
_hasnote.py \
_hasnotematchingsubstringof.py\
_hasnoteregexp.py\
_hasreferencecountof.py\
_hasreltype.py\
_hassourcecount.py \
_hassourceof.py \
_hastag.py \
__init__.py\
_isbookmarked.py\
_regexpidof.py\
_matchesfilter.py\
_matchessourceconfidence.py\
_fatherhasnameof.py\
_fatherhasidof.py\
_motherhasnameof.py\
_motherhasidof.py\
_childhasnameof.py\
_childhasidof.py\
_searchfathername.py\
_searchmothername.py\
_searchchildname.py\
_regexpfathername.py\
_regexpmothername.py\
_regexpchildname.py\
_memberbase.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/family
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,35 +0,0 @@
# This is the src/Filters/Rules/MediaObject level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/media
pkgpython_PYTHON = \
_allmedia.py\
_changedsince.py\
_hascitation.py \
_hasidof.py\
_hasmedia.py\
_hasnotematchingsubstringof.py\
_hasnoteregexp.py\
_hasreferencecountof.py\
_hastag.py\
_hassourcecount.py \
_hassourceof.py \
_matchesfilter.py\
_matchessourceconfidence.py\
_mediaprivate.py\
_hasattribute.py\
_regexpidof.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/media
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,29 +0,0 @@
# This is the src/Filters/Rules/Note level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/note
pkgpython_PYTHON = \
_allnotes.py\
_changedsince.py\
_hasidof.py\
_matchessubstringof.py\
_matchesregexpof.py\
_hasnote.py\
_hasreferencecountof.py\
_hastag.py\
_matchesfilter.py\
_regexpidof.py\
_noteprivate.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/note
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,96 +0,0 @@
# This is the src/Filters/Rules/Person level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/person
pkgpython_PYTHON = \
_changedsince.py\
_disconnected.py \
_deeprelationshippathbetween.py \
_everyone.py \
_familywithincompleteevent.py \
_hasattribute.py \
_hasaddress.py \
_hasalternatename.py \
_hasassociation.py \
_hasbirth.py \
_hascitation.py \
_hascommonancestorwith.py \
_hascommonancestorwithfiltermatch.py \
_hasdeath.py \
_hasevent.py \
_hasfamilyattribute.py \
_hasfamilyevent.py \
_hasgallery.py \
_hasidof.py \
_haslds.py \
_hasnameof.py \
_hasnameorigintype.py \
_hasnametype.py \
_hasnickname.py \
_hasnote.py \
_hasnotematchingsubstringof.py \
_hasrelationship.py \
_hassourcecount.py \
_hassourceof.py \
_hastag.py \
_hastextmatchingregexpof.py \
_hastextmatchingsubstringof.py \
_hasunknowngender.py \
_havealtfamilies.py \
_havechildren.py \
_incompletenames.py \
_isancestorof.py \
_isancestoroffiltermatch.py \
_isbookmarked.py \
_ischildoffiltermatch.py \
_isdefaultperson.py \
_isdescendantfamilyof.py \
_isdescendantfamilyoffiltermatch.py \
_isdescendantof.py \
_isdescendantoffiltermatch.py \
_isduplicatedancestorof.py \
_isfemale.py \
_islessthannthgenerationancestorof.py \
_islessthannthgenerationancestorofbookmarked.py \
_islessthannthgenerationancestorofdefaultperson.py \
_islessthannthgenerationdescendantof.py \
_ismale.py \
_ismorethannthgenerationancestorof.py \
_ismorethannthgenerationdescendantof.py \
_isparentoffiltermatch.py \
_isrelatedwith.py \
_issiblingoffiltermatch.py \
_isspouseoffiltermatch.py \
_iswitness.py \
_matchesfilter.py \
_matcheseventfilter.py \
_matchessourceconfidence.py \
_missingparent.py \
_multiplemarriages.py \
_nevermarried.py \
_nobirthdate.py \
_nodeathdate.py \
_peopleprivate.py \
_peoplepublic.py \
_personwithincompleteevent.py \
_probablyalive.py \
_relationshippathbetween.py \
_relationshippathbetweenbookmarks.py \
_searchname.py \
_regexpidof.py \
_matchidof.py \
_hasnoteregexp.py \
_regexpname.py \
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/person
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,37 +0,0 @@
# This is the src/Filters/Rules/Place level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/place
pkgpython_PYTHON = \
_allplaces.py\
_changedsince.py\
_hascitation.py \
_hasidof.py\
_hasnolatorlon.py\
_inlatlonneighborhood.py\
_hasgallery.py \
_hasnotematchingsubstringof.py\
_hasnoteregexp.py\
_hasplace.py\
_hasnote.py \
_hasreferencecountof.py\
_hassourcecount.py \
_hassourceof.py \
_matchesfilter.py\
_matcheseventfilter.py\
_matchessourceconfidence.py\
_placeprivate.py\
_regexpidof.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/place
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,29 +0,0 @@
# This is the src/Filters/Rules/Media level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/repository
pkgpython_PYTHON = \
_allrepos.py\
_changedsince.py\
_hasidof.py\
_hasnotematchingsubstringof.py\
_hasnoteregexp.py\
_hasreferencecountof.py\
_hasrepo.py\
_matchesfilter.py\
_matchesnamesubstringof.py\
_regexpidof.py\
_repoprivate.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/repository
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,33 +0,0 @@
# This is the src/Filters/Rules/Source level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/filters/rules/source
pkgpython_PYTHON = \
_changedsince.py\
_matchesfilter.py\
_sourceprivate.py\
_regexpidof.py\
_hasgallery.py \
_hasnotematchingsubstringof.py\
_hasreferencecountof.py\
_allsources.py\
_hasidof.py\
_hasnote.py \
_hasnoteregexp.py\
_hasrepository.py\
__init__.py\
_matchestitlesubstringof.py\
_hasrepositorycallnumberref.py\
_matchesrepositoryfilter.py
pkgpyexecdir = @pkgpyexecdir@/gen/filters/rules/source
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,88 +0,0 @@
# 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)

View File

@ -1,31 +0,0 @@
# This is the src/gen/merge level Makefile for Gramps
# $Id: Makefile.am 18851 2012-02-10 20:25:15Z josipsf $
# 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/merge
pkgpython_PYTHON = \
__init__.py \
diff.py \
mergepersonquery.py \
mergefamilyquery.py \
mergeeventquery.py \
mergeplacequery.py \
mergesourcequery.py \
mergecitationquery.py \
mergerepositoryquery.py \
mergemediaquery.py \
mergenotequery.py
pkgpyexecdir = @pkgpyexecdir@/gen/merge
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,24 +0,0 @@
# This is the src/gen/mime 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/mime
pkgpython_PYTHON = \
__init__.py\
_gnomemime.py\
_winmime.py\
_pythonmime.py
pkgpyexecdir = @pkgpyexecdir@/gen/mime
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,36 +0,0 @@
# This is the src/gen/plug 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
SUBDIRS = \
docbackend\
docgen\
menu\
report
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug
pkgpython_PYTHON = \
__init__.py \
_docgenplugin.py \
_export.py \
_gramplet.py \
_import.py \
_manager.py \
_options.py \
_plugin.py \
_pluginreg.py \
utils.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,23 +0,0 @@
# This is the src/gen/plug/menu 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/plug/docbackend
pkgpython_PYTHON = \
__init__.py \
cairobackend.py \
docbackend.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/docbackend
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,34 +0,0 @@
# This is the src/gen/plug/menu 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
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug/docgen
pkgpython_PYTHON = \
__init__.py \
basedoc.py \
drawdoc.py \
fontscale.py \
fontstyle.py \
graphdoc.py \
graphicstyle.py \
paperstyle.py \
paragraphstyle.py \
stylesheet.py \
tablestyle.py \
textdoc.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/docgen
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug/docgen
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,40 +0,0 @@
# This is the src/gen/plug/menu 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/plug/menu
pkgpython_PYTHON = \
__init__.py \
_boolean.py \
_booleanlist.py \
_color.py \
_destination.py \
_enumeratedlist.py \
_family.py \
_filter.py \
_media.py \
_menu.py \
_note.py \
_number.py \
_option.py \
_person.py \
_personlist.py \
_placelist.py \
_string.py \
_style.py \
_surnamecolor.py \
_text.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/menu
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,26 +0,0 @@
# This is the src/gen/plug/report level Makefile for Gramps
# $Id$
pkgdatadir = $(datadir)/@PACKAGE@/gen/plug/report
pkgpython_PYTHON = \
__init__.py\
_bibliography.py\
_constants.py\
_options.py\
_paper.py\
_reportbase.py\
endnotes.py\
utils.py
pkgpyexecdir = @pkgpyexecdir@/gen/plug/report
pkgpythondir = $(datadir)/@PACKAGE@/gen/plug/report
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,26 +0,0 @@
# This is the src/RelLib 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/proxy
pkgpython_PYTHON = \
__init__.py \
filter.py \
living.py \
private.py \
referencedbyselection.py \
proxybase.py
pkgpyexecdir = @pkgpyexecdir@/gen/proxy
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,21 +0,0 @@
# This is the src/gen/simple level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gen/simple
pkgpython_PYTHON = \
_simpledoc.py\
_simpleaccess.py\
_simpletable.py\
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gen/simple
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,41 +0,0 @@
# This is the src/RelLib 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
SUBDIRS = docgen
pkgpythondir = $(datadir)/@PACKAGE@/gen/utils
pkgpython_PYTHON = \
__init__.py \
alive.py \
callback.py \
callman.py \
cast.py \
config.py \
configmanager.py \
debug.py \
db.py \
file.py \
id.py \
image.py \
keyword.py \
lds.py \
mactrans.py \
place.py \
string.py \
trans.py \
unknown.py
pkgpyexecdir = @pkgpyexecdir@/gen/utils
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,23 +0,0 @@
# This is the src/docgen level Makefile for Gramps
# $Id$
# Use GNU make's ':=' syntax for nice wildcard use.
# If not using GNU make, then list all .py files individually
pkgpythondir = $(datadir)/@PACKAGE@/gen/utils/docgen
pkgpython_PYTHON = \
__init__.py \
CSVTab.py \
ODSTab.py \
TabbedDoc.py
pkgpyexecdir = @pkgpyexecdir@/gen/utils/docgen
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,60 +0,0 @@
# This is the src/RelLib 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
SUBDIRS = \
editors \
filters \
glade \
logger \
merge \
plug \
selectors \
views \
widgets
pkgpythondir = $(datadir)/@PACKAGE@/gui
pkgpython_PYTHON = \
__init__.py \
aboutdialog.py \
autocomp.py \
basesidebar.py \
clipboard.py \
columnorder.py \
configure.py \
dbguielement.py \
dbloader.py \
dbman.py \
ddtargets.py \
dialog.py \
display.py \
displaystate.py \
glade.py \
grampsbar.py \
grampsgui.py \
listmodel.py \
makefilter.py \
managedwindow.py \
navigator.py \
pluginmanager.py \
spell.py \
thumbnails.py \
tipofday.py \
undohistory.py \
user.py \
utils.py \
viewmanager.py
pkgpyexecdir = @pkgpyexecdir@/gui
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,53 +0,0 @@
# This is the src/gui/editors 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
SUBDIRS = \
displaytabs
pkgpythondir = $(datadir)/@PACKAGE@/gui/editors
pkgpython_PYTHON = \
addmedia.py\
__init__.py\
editaddress.py \
editattribute.py \
editchildref.py \
editcitation.py \
editdate.py \
editevent.py \
editeventref.py \
editfamily.py \
editldsord.py \
editlocation.py \
editlink.py \
editmedia.py \
editmediaref.py \
editname.py \
editnote.py \
editperson.py \
editpersonref.py \
editplace.py \
editprimary.py \
editreference.py \
editrepository.py \
editreporef.py \
editsecondary.py \
editsource.py \
edittaglist.py \
editurl.py \
filtereditor.py \
objectentries.py
pkgpyexecdir = @pkgpyexecdir@/gui/editors
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,62 +0,0 @@
# This is the src/gui/editors/displaytabs level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gui/editors/displaytabs
pkgpython_PYTHON = \
addrembedlist.py \
addressmodel.py \
attrembedlist.py \
attrmodel.py \
backreflist.py \
backrefmodel.py \
buttontab.py \
childmodel.py \
citationbackreflist.py \
citationembedlist.py \
citationrefmodel.py \
dataembedlist.py \
datamodel.py \
embeddedlist.py \
eventbackreflist.py \
eventembedlist.py \
eventrefmodel.py \
familyattrembedlist.py \
familyldsembedlist.py \
gallerytab.py \
grampstab.py \
groupembeddedlist.py \
ldsembedlist.py \
ldsmodel.py \
locationembedlist.py \
locationmodel.py \
mediabackreflist.py \
nameembedlist.py \
namemodel.py \
notebackreflist.py \
notetab.py \
notemodel.py \
personbackreflist.py \
personeventembedlist.py \
personrefembedlist.py \
personrefmodel.py \
placebackreflist.py \
repoembedlist.py \
reporefmodel.py \
sourcebackreflist.py \
surnamemodel.py \
surnametab.py \
webembedlist.py \
webmodel.py \
__init__.py
pkgpyexecdir = @pkgpyexecdir@/gui/editors/displaytabs
# clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,24 +0,0 @@
# This is the src/gui/filters level Makefile for Gramps
# $Id$
SUBDIRS = sidebar
pkgpythondir = $(datadir)/@PACKAGE@/gui/filters
pkgpython_PYTHON = \
_filtercombobox.py \
_filtermenu.py \
_filterstore.py \
__init__.py \
_searchbar.py
pkgpyexecdir = @pkgpyexecdir@/gui/filters
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,28 +0,0 @@
# This is the src/gui/filters/sidebar level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gui/filters/sidebar
pkgpython_PYTHON = \
_eventsidebarfilter.py \
_familysidebarfilter.py \
__init__.py \
_sidebarfilter.py \
_personsidebarfilter.py\
_sourcesidebarfilter.py\
_citationsidebarfilter.py\
_placesidebarfilter.py\
_mediasidebarfilter.py\
_reposidebarfilter.py\
_notesidebarfilter.py
pkgpyexecdir = @pkgpyexecdir@/gui/filters/sidebar
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,56 +0,0 @@
# This is the src/data level Makefile
# $Id$
#
pkgdatadir = $(datadir)/@PACKAGE@/gui/glade
dist_pkgdata_DATA = \
gramps.glade\
editperson.glade\
mergedata.glade\
plugins.glade\
rule.glade\
clipboard.glade\
papermenu.glade \
grampletpane.glade \
baseselector.glade \
reorder.glade \
tipofday.glade \
displaystate.glade \
addmedia.glade \
dialog.glade \
configure.glade \
editdate.glade \
editsource.glade \
editcitation.glade \
styleeditor.glade \
dbman.glade \
editurl.glade \
editrepository.glade \
editreporef.glade \
editpersonref.glade \
editlocation.glade \
editlink.glade \
editfamily.glade \
editchildref.glade \
editattribute.glade \
editaddress.glade \
editmedia.glade \
editmediaref.glade \
editeventref.glade \
editldsord.glade \
editnote.glade \
editplace.glade \
editsourceref.glade \
editname.glade \
editevent.glade \
mergeperson.glade \
mergefamily.glade \
mergeevent.glade \
mergeplace.glade \
mergesource.glade \
mergecitation.glade \
mergerepository.glade \
mergemedia.glade \
mergenote.glade \
updateaddons.glade

View File

@ -1,24 +0,0 @@
# This is the src/gui/logger 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
pkgpython_PYTHON = \
_errorreportassistant.py\
_errorview.py\
_gtkhandler.py\
__init__.py\
_rotatehandler.py
pkgpyexecdir = @pkgpyexecdir@/gui/logger
pkgpythondir = $(datadir)/@PACKAGE@/gui/logger
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,30 +0,0 @@
# This is the src/RelLib 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@/gui/merge
pkgpython_PYTHON = \
__init__.py \
mergeperson.py \
mergefamily.py \
mergeevent.py \
mergeplace.py \
mergesource.py \
mergecitation.py \
mergerepository.py \
mergemedia.py \
mergenote.py
pkgpyexecdir = @pkgpyexecdir@/gui/merge
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,30 +0,0 @@
# This is the src/PluginUtils 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
SUBDIRS = \
export \
quick \
report
pkgpythondir = $(datadir)/@PACKAGE@/gui/plug
pkgpython_PYTHON = \
__init__.py\
_guioptions.py\
_windows.py\
_dialogs.py\
tool.py
pkgpyexecdir = @pkgpyexecdir@/gui/plug
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,20 +0,0 @@
# This is the src/gui/plug/export level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gui/plug/export
pkgpython_PYTHON = \
__init__.py\
_exportassistant.py\
_exportoptions.py
pkgpyexecdir = @pkgpyexecdir@/gui/plug/export
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,21 +0,0 @@
# This is the src/gui/plug/quick level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gui/plug/quick
pkgpython_PYTHON = \
__init__.py\
_quickreports.py\
_quicktable.py\
_textbufdoc.py
pkgpyexecdir = @pkgpyexecdir@/gui/plug/quick
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,28 +0,0 @@
# This is the src/gui/plug/report level Makefile for Gramps
# $Id$
pkgpythondir = $(datadir)/@PACKAGE@/gui/plug/report
pkgpython_PYTHON = \
__init__.py\
_docreportdialog.py\
_drawreportdialog.py\
_fileentry.py\
_graphvizreportdialog.py\
_papermenu.py\
_reportdialog.py\
_stylecombobox.py\
_styleeditor.py\
_textreportdialog.py\
_webreportdialog.py
pkgpyexecdir = @pkgpyexecdir@/gui/plug/report
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,33 +0,0 @@
# This is the src/Selectors 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@/gui/selectors
pkgpython_PYTHON = \
__init__.py \
baseselector.py \
selectcitation.py \
selectevent.py \
selectfamily.py \
selectnote.py \
selectobject.py \
selectperson.py \
selectrepository.py \
selectsource.py \
selectplace.py \
selectorexceptions.py \
selectorfactory.py
pkgpyexecdir = @pkgpyexecdir@/gui/selectors
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,32 +0,0 @@
# This is the src/DataViews 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
SUBDIRS = \
treemodels
pkgpythondir = $(datadir)/@PACKAGE@/gui/views
pkgpython_PYTHON = \
__init__.py \
bookmarks.py \
listview.py \
navigationview.py \
pageview.py \
tags.py
pkgpyexecdir = @pkgpyexecdir@/gui/views
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));
pylint:
PYTHONPATH=$(GRAMPS_PY_MODPATH) pylint $(pkgpython_PYTHON) > pylint.out

View File

@ -1,38 +0,0 @@
# This is the src/DataViews 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@/gui/views/treemodels
pkgpython_PYTHON = \
__init__.py \
eventmodel.py \
familymodel.py \
flatbasemodel.py \
lru.py \
mediamodel.py \
notemodel.py \
peoplemodel.py \
placemodel.py \
repomodel.py \
sourcemodel.py \
citationbasemodel.py \
citationlistmodel.py \
citationtreemodel.py \
treebasemodel.py
pkgpyexecdir = @pkgpyexecdir@/gui/views/treemodels
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));
pylint:
PYTHONPATH=$(GRAMPS_PY_MODPATH) pylint $(pkgpython_PYTHON) > pylint.out

View File

@ -1,50 +0,0 @@
# This is the src/gui/widgets 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@/gui/widgets
pkgpython_PYTHON = \
__init__.py \
basicentry.py \
buttons.py \
expandcollapsearrow.py \
fanchart.py \
fanchartdesc.py \
grampletpane.py \
labels.py \
linkbox.py \
menuitem.py \
menutoolbuttonaction.py \
monitoredwidgets.py \
multitreeview.py \
photo.py \
progressdialog.py \
reorderfam.py \
shortlistcomboentry.py \
springseparator.py \
statusbar.py \
styledtextbuffer.py \
styledtexteditor.py \
toolcomboentry.py \
undoablebuffer.py \
undoableentry.py \
undoablestyledbuffer.py \
validatedcomboentry.py \
validatedmaskedentry.py \
valueaction.py \
valuetoolitem.py
pkgpyexecdir = @pkgpyexecdir@/gui/widgets
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,64 +0,0 @@
# This is the src/images/16x16 level Makefile for Gramps
# $Id$
SUBDIRS =
pkgdatadir = $(datadir)/@PACKAGE@/images/16x16
dist_pkgdata_DATA = \
geo-fixed-zoom.png \
geo-free-zoom.png \
geo-place-add.png \
geo-place-link.png \
geo-show-event.png \
geo-show-family.png \
geo-show-person.png \
geo-show-place.png \
gramps-address.png \
gramps-attribute.png \
gramps-bookmark-delete.png \
gramps-bookmark-edit.png \
gramps-bookmark-new.png \
gramps-bookmark.png \
gramps-citation.png \
gramps-config.png \
gramps-date.png \
gramps-date-edit.png \
gramps-event.png \
gramps-fanchart.png \
gramps-fanchartdesc.png \
gramps-family.png \
gramps-font-bgcolor.png \
gramps-font-color.png \
gramps-font.png \
gramps-geo.png \
gramps-gramplet.png \
gramps-lock.png \
gramps-media.png \
gramps-merge.png \
gramps-notes.png \
gramps-parents.png \
gramps-parents-add.png \
gramps-parents-open.png \
gramps-pedigree.png \
gramps-person.png \
gramps-place.png \
gramps.png \
gramps-relation.png \
gramps-reports.png \
gramps-repository.png \
gramps-source.png \
gramps-spouse.png \
gramps-tag.png \
gramps-tag-new.png \
gramps-tools.png \
gramps-tree-group.png \
gramps-tree-list.png \
gramps-tree-select.png \
gramps-unlock.png \
gramps-view.png \
gramps-viewmedia.png \
gramps-zoom-best-fit.png \
gramps-zoom-fit-width.png \
gramps-zoom-in.png \
gramps-zoom-out.png

View File

@ -1,68 +0,0 @@
# This is the src/images/22x22 level Makefile for Gramps
# $Id$
SUBDIRS =
pkgdatadir = $(datadir)/@PACKAGE@/images/22x22
dist_pkgdata_DATA = \
geo-fixed-zoom.png \
geo-free-zoom.png \
geo-place-add.png \
geo-place-link.png \
geo-show-event.png \
geo-show-family.png \
geo-show-person.png \
geo-show-place.png \
gramps-address.png \
gramps-attribute.png \
gramps-bookmark-delete.png \
gramps-bookmark-edit.png \
gramps-bookmark-new.png \
gramps-bookmark.png \
gramps-citation.png \
gramps-config.png \
gramps-date-edit.png \
gramps-date.png \
gramps-event.png \
gramps-family.png \
gramps-fanchart.png \
gramps-fanchartdesc.png \
gramps-font-bgcolor.png \
gramps-font-color.png \
gramps-font.png \
gramps-geo.png \
gramps-geo-birth.png \
gramps-geo-death.png \
gramps-geo-mainmap.png \
gramps-geo-marriage.png \
gramps-geo-altmap.png \
gramps-gramplet.png \
gramps-lock.png \
gramps-media.png \
gramps-merge.png \
gramps-notes.png \
gramps-parents.png \
gramps-parents-add.png \
gramps-parents-open.png \
gramps-pedigree.png \
gramps-person.png \
gramps-place.png \
gramps.png \
gramps-relation.png \
gramps-reports.png \
gramps-repository.png \
gramps-source.png \
gramps-spouse.png \
gramps-tag.png \
gramps-tag-new.png \
gramps-tools.png \
gramps-tree-group.png \
gramps-tree-list.png \
gramps-tree-select.png \
gramps-unlock.png \
gramps-view.png \
gramps-viewmedia.png \
gramps-zoom-best-fit.png \
gramps-zoom-fit-width.png \
gramps-zoom-in.png \
gramps-zoom-out.png

View File

@ -1,68 +0,0 @@
# This is the src/images/48x48 level Makefile for Gramps
# $Id$
SUBDIRS =
pkgdatadir = $(datadir)/@PACKAGE@/images/48x48
dist_pkgdata_DATA = \
geo-fixed-zoom.png \
geo-free-zoom.png \
geo-place-add.png \
geo-place-link.png \
geo-show-event.png \
geo-show-family.png \
geo-show-person.png \
geo-show-place.png \
gramps-address.png \
gramps-attribute.png \
gramps-bookmark-delete.png \
gramps-bookmark-edit.png \
gramps-bookmark-new.png \
gramps-bookmark.png \
gramps-citation.png \
gramps-config.png \
gramps-date-edit.png \
gramps-date.png \
gramps-event.png \
gramps-family.png \
gramps-fanchart.png \
gramps-fanchartdesc.png \
gramps-font-bgcolor.png \
gramps-font-color.png \
gramps-font.png \
gramps-geo.png \
gramps-geo-birth.png \
gramps-geo-death.png \
gramps-geo-mainmap.png \
gramps-geo-marriage.png \
gramps-geo-altmap.png \
gramps-gramplet.png \
gramps-lock.png \
gramps-media.png \
gramps-merge.png \
gramps-notes.png \
gramps-parents.png \
gramps-parents-add.png \
gramps-parents-open.png \
gramps-pedigree.png \
gramps-person.png \
gramps-place.png \
gramps.png \
gramps-relation.png \
gramps-reports.png \
gramps-repository.png \
gramps-source.png \
gramps-spouse.png \
gramps-tag.png \
gramps-tag-new.png \
gramps-tools.png \
gramps-tree-group.png \
gramps-tree-list.png \
gramps-tree-select.png \
gramps-unlock.png \
gramps-view.png \
gramps-viewmedia.png \
gramps-zoom-best-fit.png \
gramps-zoom-fit-width.png \
gramps-zoom-in.png \
gramps-zoom-out.png

View File

@ -1,22 +0,0 @@
# This is the src/images level Makefile for Gramps
# $Id$
SUBDIRS = 16x16 22x22 48x48 scalable
pkgdatadir = $(datadir)/@PACKAGE@/images
icon_DATA = gramps.png
icondir= $(datadir)/pixmaps
dist_pkgdata_DATA = \
gramps.png\
gramps-export.png\
gramps-import.png\
gramps-undo-history.png\
gramps-url.png\
image-missing.png\
logo.png\
ped24.ico\
splash.jpg\
stock_link.png
EXTRA_DIST = gramps.svg

View File

@ -1,68 +0,0 @@
# This is the src/images/scalable level Makefile for Gramps
# $Id$
SUBDIRS =
pkgdatadir = $(datadir)/@PACKAGE@/images/scalable
dist_pkgdata_DATA = \
geo-fixed-zoom.svg \
geo-free-zoom.svg \
geo-place-add.svg \
geo-place-link.svg \
geo-show-event.svg \
geo-show-family.svg \
geo-show-person.svg \
geo-show-place.svg \
gramps-address.svg \
gramps-attribute.svg \
gramps-bookmark-delete.svg \
gramps-bookmark-edit.svg \
gramps-bookmark-new.svg \
gramps-bookmark.svg \
gramps-citation.svg \
gramps-config.svg \
gramps-date-edit.svg \
gramps-date.svg \
gramps-event.svg \
gramps-family.svg \
gramps-fanchart.svg \
gramps-fanchartdesc.svg \
gramps-font-bgcolor.svg \
gramps-font-color.svg \
gramps-font.svg \
gramps-geo.svg \
gramps-geo-birth.svg \
gramps-geo-death.svg \
gramps-geo-mainmap.svg \
gramps-geo-marriage.svg \
gramps-geo-altmap.svg \
gramps-gramplet.svg \
gramps-lock.svg \
gramps-media.svg \
gramps-merge.svg \
gramps-notes.svg \
gramps-parents.svg \
gramps-parents-open.svg \
gramps-parents-add.svg \
gramps-pedigree.svg \
gramps-person.svg \
gramps-place.svg \
gramps.svg \
gramps-relation.svg \
gramps-reports.svg \
gramps-repository.svg \
gramps-source.svg \
gramps-spouse.svg \
gramps-tag.svg \
gramps-tag-new.svg \
gramps-tools.svg \
gramps-tree-group.svg \
gramps-tree-list.svg \
gramps-tree-select.svg \
gramps-unlock.svg \
gramps-view.svg \
gramps-viewmedia.svg \
gramps-zoom-best-fit.svg \
gramps-zoom-fit-width.svg \
gramps-zoom-in.svg \
gramps-zoom-out.svg

View File

@ -1,52 +0,0 @@
# 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.
# 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
pkgpyexecdir = @pkgpyexecdir@/plugins
pkgpythondir = $(datadir)/@PACKAGE@/plugins
GLADEFILES = \
bookreport.glade
GRAPHICS =
DATAFILES =
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../:../docgen"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,40 +0,0 @@
# This is the src/plugins/docgen 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins/docgen
pkgpython_PYTHON = \
asciidoc.py \
docgen.gpr.py\
gtkprint.py \
htmldoc.py \
latexdoc.py \
odfdoc.py \
pdfdoc.py \
psdrawdoc.py \
rtfdoc.py \
svgdrawdoc.py
pkgpyexecdir = @pkgpyexecdir@/plugins/docgen
pkgpythondir = $(datadir)/@PACKAGE@/plugins/docgen
GLADEFILES = \
gtkprint.glade
GRAPHICS =
DATAFILES =
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,27 +0,0 @@
# This is the src/plugins/drawreport 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@/plugins/drawreport
pkgpython_PYTHON = \
ancestortree.py \
calendarreport.py\
descendtree.py \
drawplugins.gpr.py\
fanchart.py \
statisticschart.py \
timeline.py
pkgpyexecdir = @pkgpyexecdir@/plugins/drawreport
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,29 +0,0 @@
# This is the src/plugins/export 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
pkgpython_PYTHON = \
export.gpr.py \
exportcsv.py \
exportftree.py \
exportgedcom.py \
exportgeneweb.py \
exportpkg.py \
exportvcalendar.py \
exportvcard.py \
exportxml.py
pkgpyexecdir = @pkgpyexecdir@/plugins/export
pkgpythondir = $(datadir)/@PACKAGE@/plugins/export
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,55 +0,0 @@
# This is the src/plugins/drawreport 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@/plugins/gramplet
pkgpython_PYTHON = \
ageondategramplet.py \
agestats.py \
attributes.py \
attributesgramplet.py \
backlinks.py \
calendargramplet.py \
children.py \
citations.py \
descendgramplet.py \
editexifmetadata.py \
events.py \
fanchartgramplet.py \
fanchartdescgramplet.py \
faqgramplet.py \
filter.py \
gallery.py \
givennamegramplet.py \
gramplet.gpr.py \
mediapreview.py \
metadataviewer.py \
notes.py \
pedigreegramplet.py \
persondetails.py \
personresidence.py \
placedetails.py \
quickviewgramplet.py \
relativegramplet.py \
repositorydetails.py \
sessionloggramplet.py \
statsgramplet.py \
surnamecloudgramplet.py \
todogramplet.py \
topsurnamesgramplet.py \
welcomegramplet.py \
whatsnext.py
pkgpyexecdir = @pkgpyexecdir@/plugins/gramplet
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,24 +0,0 @@
# This is the src/plugins/graph 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@/plugins/graph
pkgpython_PYTHON = \
graphplugins.gpr.py\
gvfamilylines.py \
gvhourglass.py \
gvrelgraph.py
pkgpyexecdir = @pkgpyexecdir@/plugins/graph
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,32 +0,0 @@
# This is the src/plugins/import 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins/import
pkgpython_PYTHON = \
import.gpr.py \
importcsv.py \
importgedcom.py \
importgeneweb.py \
importgpkg.py \
importgrdb.py \
importprogen.py \
importvcard.py \
importxml.py
pkgpyexecdir = @pkgpyexecdir@/plugins/import
pkgpythondir = $(datadir)/@PACKAGE@/plugins/import
dist_pkgdata_DATA = importgedcom.glade
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,61 +0,0 @@
# This is the src/plugins/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
xml_in_files = holidays.xml.in
xml_files = $(xml_in_files:.xml.in=.xml)
@INTLTOOL_XML_NOMERGE_RULE@
EXTRA_DIST=$(xml_in_files) $(xml_files)
pkgdatadir = $(datadir)/@PACKAGE@/plugins/lib
SUBDIRS = maps
pkgpython_PYTHON = \
libcairodoc.py\
libgedcom.py\
libgrampsxml.py\
libgrdb.py\
libhtml.py\
libhtmlbackend.py\
libhtmlconst.py\
libholiday.py\
libmapservice.py\
libmetadata.py\
libmixin.py\
libnarrate.py\
libodfbackend.py\
libpersonview.py\
libplaceview.py\
libplugins.gpr.py\
libsubstkeyword.py\
libtranslate.py\
libtreebase.py
pkgpyexecdir = @pkgpyexecdir@/plugins/lib
pkgpythondir = $(datadir)/@PACKAGE@/plugins/lib
GLADEFILES =
GRAPHICS =
DATAFILES = \
holidays.xml
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
CLEANFILES = \
$(xml_files)
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,29 +0,0 @@
pkgdatadir = $(datadir)/@PACKAGE@/plugins/lib/maps
# $Id$
pkgpython_PYTHON = \
constants.py\
datelayer.py\
dummylayer.py\
dummynogps.py\
geography.py\
__init__.py\
lifewaylayer.py\
markerlayer.py\
messagelayer.py\
osmGps.py\
placeselection.py\
selectionlayer.py
pkgpyexecdir = @pkgpyexecdir@/plugins/lib/maps
pkgpythondir = $(datadir)/@PACKAGE@/plugins/lib/maps
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../:../view"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,33 +0,0 @@
# This is the src/plugins/mapservices 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins/mapservices
pkgpython_PYTHON = \
googlemap.py\
mapservice.gpr.py\
openstreetmap.py\
eniroswedenmap.py
pkgpyexecdir = @pkgpyexecdir@/plugins/mapservices
pkgpythondir = $(datadir)/@PACKAGE@/plugins/mapservices
GLADEFILES =
GRAPHICS =
DATAFILES =
dist_pkgdata_DATA = $(GLADEFILES) $(GRAPHICS) $(DATAFILES)
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,34 +0,0 @@
# This is the src/plugins/quickview 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins/quickview
pkgpython_PYTHON = \
ageondate.py \
all_events.py \
all_relations.py \
attributematch.py \
filterbyname.py \
lineage.py \
onthisday.py \
quickview.gpr.py \
references.py \
linkreferences.py \
reporef.py \
samesurnames.py\
siblings.py
pkgpyexecdir = @pkgpyexecdir@/plugins/quickview
pkgpythondir = $(datadir)/@PACKAGE@/plugins/quickview
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,40 +0,0 @@
# This is the src/plugins/rel 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins/rel
pkgpython_PYTHON = \
relplugins.gpr.py\
rel_ca.py\
rel_cs.py\
rel_da.py\
rel_de.py\
rel_es.py\
rel_fi.py\
rel_fr.py\
rel_hu.py\
rel_hr.py\
rel_it.py\
rel_nl.py\
rel_no.py\
rel_pl.py\
rel_pt.py\
rel_ru.py\
rel_sk.py\
rel_sl.py\
rel_sv.py
pkgpyexecdir = @pkgpyexecdir@/plugins/rel
pkgpythondir = $(datadir)/@PACKAGE@/plugins/rel
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,22 +0,0 @@
# This is the src/plugins/sidebar 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@/plugins/sidebar
pkgpython_PYTHON = \
categorysidebar.py\
sidebar.gpr.py
pkgpyexecdir = @pkgpyexecdir@/plugins/sidebar
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,38 +0,0 @@
# This is the src/plugins/textreport 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@/plugins/textreport
pkgpython_PYTHON = \
alphabeticalindex.py\
ancestorreport.py\
birthdayreport.py\
custombooktext.py\
descendreport.py\
detancestralreport.py\
detdescendantreport.py\
endoflinereport.py\
familygroup.py\
indivcomplete.py\
kinshipreport.py\
numberofancestorsreport.py\
placereport.py\
simplebooktitle.py\
summary.py\
tableofcontents.py\
tagreport.py\
textplugins.gpr.py
pkgpyexecdir = @pkgpyexecdir@/plugins/textreport
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,70 +0,0 @@
# This is the src/plugins/tool 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
pkgdatadir = $(datadir)/@PACKAGE@/plugins/tool
pkgpython_PYTHON = \
changenames.py \
changetypes.py \
check.py \
desbrowser.py \
eval.py \
eventcmp.py \
eventnames.py \
extractcity.py \
finddupes.py \
leak.py \
mediamanager.py \
notrelated.py \
ownereditor.py \
patchnames.py \
rebuild.py \
rebuildgenderstat.py \
rebuildrefmap.py \
relcalc.py \
removeunused.py \
reorderids.py \
sortevents.py \
soundgen.py \
tools.gpr.py \
verify.py \
mergecitations.py
# dumpgenderstats.py \
# phpgedviewconnector.py \
# testcasegenerator.py
pkgpyexecdir = @pkgpyexecdir@/plugins/tool
pkgpythondir = $(datadir)/@PACKAGE@/plugins/tool
GLADEFILES = \
changenames.glade \
changetypes.glade \
check.glade \
desbrowser.glade \
eval.glade \
eventcmp.glade \
finddupes.glade \
leak.glade \
notrelated.glade \
ownereditor.glade \
patchnames.glade \
phpgedview.glade \
relcalc.glade \
removeunused.glade \
soundgen.glade \
verify.glade \
mergecitations.glade
dist_pkgdata_DATA = $(GLADEFILES)
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,48 +0,0 @@
# This is the src/plugins/quickview 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@/plugins/view
pkgpython_PYTHON = \
citationlistview.py \
citationtreeview.py \
eventview.py \
familyview.py \
fanchartview.py \
fanchartdescview.py \
geoclose.py \
geoevents.py \
geoplaces.py \
geoperson.py \
geofamily.py \
geofamclose.py \
geomoves.py \
geography.gpr.py \
htmlrenderer.gpr.py \
grampletview.py \
htmlrenderer.py \
mediaview.py \
noteview.py \
pedigreeview.py \
personlistview.py \
persontreeview.py \
placelistview.py \
placetreeview.py \
relview.py \
repoview.py \
sourceview.py \
view.gpr.py
pkgpyexecdir = @pkgpyexecdir@/plugins/view
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,23 +0,0 @@
# This is the src/plugins/webreport 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@/plugins/webreport
pkgpython_PYTHON = \
narrativeweb.py\
webcal.py\
webplugins.gpr.py
pkgpyexecdir = @pkgpyexecdir@/plugins/webreport
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,26 +0,0 @@
# This is the src/plugins/webstuff 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
# $Id$
SUBDIRS = css images javascript
pkgdatadir = $(datadir)/@PACKAGE@/plugins/webstuff
pkgpython_PYTHON = \
webstuff.py \
webstuff.gpr.py
pkgpyexecdir = @pkgpyexecdir@/plugins/webstuff
pkgpythondir = $(datadir)/@PACKAGE@/plugins/webstuff
# Clean up all the byte-compiled files
MOSTLYCLEANFILES = *pyc *pyo
GRAMPS_PY_MODPATH = "../../"
pycheck:
(export PYTHONPATH=$(GRAMPS_PY_MODPATH); \
pychecker $(pkgpython_PYTHON));

View File

@ -1,32 +0,0 @@
# This is the src/plugins/webstuff 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
DATAFILES = \
GeoView.css \
ancestortree.css \
behaviour.css \
narrative-maps.css \
Web_Basic-Ash.css \
Web_Basic-Blue.css \
Web_Basic-Cypress.css \
Web_Basic-Lilac.css \
Web_Basic-Peach.css \
Web_Basic-Spruce.css \
Web_Citations-Animated.css \
Web_Citations-Outline.css \
Web_DropDown-Menus.css \
Web_Fade-Menus.css \
Web_Horizontal-Menus.css \
Web_Mainz.css \
Web_Nebraska.css \
Web_Print-Default.css \
Web_Vertical-Menus.css \
Web_Visually.css
pkgdatadir = $(datadir)/@PACKAGE@/plugins/webstuff/css
dist_pkgdata_DATA = $(DATAFILES)

View File

@ -1,34 +0,0 @@
# This is the src/plugins/webstuff 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
# $Id$
DATAFILES = \
blank.gif \
crosshairs.png \
document.png \
favicon2.ico \
favicon.ico \
gramps-geo-altmap.png \
gramps-geo-altmap.svg \
gramps-geo-birth.png \
gramps-geo-birth.svg \
gramps-geo-death.png \
gramps-geo-death.svg \
gramps-geo-mainmap.png \
gramps-geo-mainmap.svg \
gramps-geo-marriage.png \
gramps-geo-marriage.svg \
somerights20.gif \
Web_Gender_Female.png \
Web_Gender_Male.png \
Web_Mainz_Bkgd.png \
Web_Mainz_Header.png \
Web_Mainz_Mid.png \
Web_Mainz_MidLight.png
pkgdatadir = $(datadir)/@PACKAGE@/plugins/webstuff/images
dist_pkgdata_DATA = $(DATAFILES)

View File

@ -1,17 +0,0 @@
# This is the src/plugins/webstuff 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
# $Id$
DATAFILES = \
jquery-1.3.2.min.js \
jquery-ui-1.7.2.custom.min.js \
jquery-1.7.1.min.js \
jquery-1.7.1.js
pkgdatadir = $(datadir)/@PACKAGE@/plugins/webstuff/js
dist_pkgdata_DATA = $(DATAFILES)