fe8b4e1839
* src/images/sources.svg: new icon * src/images/reports.svg: new icon * src/images/tools.svg: new icon * src/images/events.svg: new icon * src/images/place.svg: new icon * src/images/tools.svg: new icon * src/ViewManager.py: use new icons * src/gramps_main.py: register new icons 2006-09-22 Don Allingham <don@gramps-project.org> * src/GrampsDb/_GrampsGEDDB.py: support for disabling transactions * src/GrampsDb/_GrampsXMLDB.py: support for disabling transactions * src/GrampsDb/_GrampsBSDDB.py: support for disabling transactions * src/GrampsDb/_GrampsDbBase.py: support for disabling transactions * src/GrampsDb/_ReadGedcom.py: check for IO Eror * src/ViewManager.py: display message if a portability problem is detected * src/QuestionDialog.py: Add Warning dialog that can be disabled * src/DbLoader.py: Detect missing database problem * src/ArgHandler.py: support for disabling transactions * src/GrampsCfg.py: new config keys for transactions * src/Config/_GrampsConfigKeys.py: new config keys for transactions 2006-09-17 Don Allingham <don@gramps-project.org> * src/ViewManager.py: handle missing database on autoload (#447) * src/ArgHandler.py: handle missing database on autoload (#447) * src/DbLoader.py: handle missing database on autoload (#447) * src/Makefile.am: remove uninstalled packages from makefile * src/GrampsDb/_ReadXML.py: place vs. address changes * src/GrampsDb/_WriteXML.py: place vs. address changes * src/GrampsDb/_EditPlace.py: place vs. address changes * src/Editors/_EditPlace.py: place vs. address changes * src/Editors/_EditLocation.py: place vs. address changes * src/RelLib/_Address.py: place vs. address changes * src/RelLib/_LocationBase.py: place vs. address changes * src/RelLib/_Location.py: place vs. address changes * src/DisplayTabs/_LocationModel.py: place vs. address changes * src/DisplayTabs/_LocationEmbedList.py: place vs. address changes * src/glade/gramps.glade: place vs. address changes svn: r7325
96 lines
1.5 KiB
Makefile
96 lines
1.5 KiB
Makefile
# This is the src level Makefile for Gramps
|
|
# $Id$
|
|
|
|
SUBDIRS = \
|
|
Config \
|
|
DataViews \
|
|
Editors \
|
|
Filters \
|
|
FilterEditor \
|
|
GrampsDb \
|
|
Merge \
|
|
DisplayTabs \
|
|
DisplayModels \
|
|
GrampsLogger \
|
|
Mime \
|
|
Selectors \
|
|
RelLib \
|
|
data \
|
|
DateHandler \
|
|
PluginUtils \
|
|
ReportBase \
|
|
glade \
|
|
docgen \
|
|
images \
|
|
plugins
|
|
|
|
gdirdir=$(prefix)/share/gramps
|
|
|
|
gdir_PYTHON = \
|
|
AddMedia.py\
|
|
ansel_utf8.py\
|
|
ArgHandler.py\
|
|
Assistant.py\
|
|
AutoComp.py\
|
|
BaseDoc.py\
|
|
Bookmarks.py\
|
|
ColumnOrder.py\
|
|
const.py\
|
|
DateEdit.py\
|
|
Date.py\
|
|
DbLoader.py\
|
|
DdTargets.py\
|
|
DisplayState.py\
|
|
Errors.py\
|
|
Exporter.py\
|
|
FontScale.py\
|
|
GrampsCfg.py\
|
|
GrampsDisplay.py\
|
|
GrampsLocale.py\
|
|
gramps_main.py\
|
|
gramps.py\
|
|
GrampsWidgets.py\
|
|
ImgManip.py\
|
|
LdsUtils.py \
|
|
ListModel.py\
|
|
ManagedWindow.py\
|
|
NameDisplay.py\
|
|
Navigation.py\
|
|
PageView.py\
|
|
QuestionDialog.py\
|
|
RecentFiles.py\
|
|
Relationship.py\
|
|
ScratchPad.py\
|
|
Sort.py\
|
|
soundex.py\
|
|
Spell.py\
|
|
StartupDialog.py\
|
|
SubstKeywords.py\
|
|
TipOfDay.py\
|
|
ToolTips.py\
|
|
TransUtils.py\
|
|
TreeTips.py\
|
|
Utils.py\
|
|
ViewManager.py\
|
|
UndoHistory.py\
|
|
BasicUtils.py
|
|
|
|
# Clean up all the byte-compiled files
|
|
MOSTLYCLEANFILES = *pyc *pyo
|
|
|
|
# Which modules to document
|
|
docmodules = RelLib DateHandler GrampsDb Filters BaseDoc
|
|
|
|
pycheck:
|
|
for d in $(SUBDIRS) ; do \
|
|
(cd $$d; make pycheck); \
|
|
done;
|
|
pychecker $(gdir_PYTHON)
|
|
|
|
docs:
|
|
epydoc -o doc --url http://gramps-project.org --name GRAMPS --html $(docmodules)
|
|
epydoc --pdf $(docmodules)
|
|
|
|
cmdplug:
|
|
./build_cmdplug
|