gramps/src/Makefile.am

158 lines
2.8 KiB
Makefile
Raw Normal View History

# $Id$
2002-10-20 19:55:16 +05:30
# This is the src level Makefile for Gramps
SUBDIRS = \
docgen \
plugins \
dates \
data \
po \
GrampsDb \
RelLib \
ObjectSelector \
GrampsLogger \
TreeViews \
Config \
Mime \
2006-03-04 12:04:48 +05:30
Models \
images \
Editors
2002-10-20 19:55:16 +05:30
# For intl. support, how do we compile?
MOSTLYCLEANFILES =
CLEANFILES = const.pyc const.pyo
2002-10-20 19:55:16 +05:30
# What are the PYTHON scripts for this package that need to be handled?
#
# We only want optimized byte-compiled (.pyo) versions, no .pyc
# In principle, this is handled by PYCFILES and PYOFILES, but
# they don't seem to work so we edited the py-compile script instead
2003-03-07 07:51:18 +05:30
gdirdir=$(prefix)/share/gramps
docfiles = \
RelLib.py \
Date.py \
DateParser.py \
DateDisplay.py \
GrampsDbBase.py
gdir_PYTHON = \
2003-03-07 07:51:18 +05:30
AddMedia.py\
ansel_utf8.py\
2006-03-02 23:36:21 +05:30
ArgHandler.py\
Assistant.py\
2003-03-07 07:51:18 +05:30
AutoComp.py\
2003-09-03 19:47:53 +05:30
BaseDoc.py\
2003-03-07 07:51:18 +05:30
Bookmarks.py\
ColumnOrder.py\
2006-03-03 02:58:27 +05:30
const.py\
2006-03-02 23:36:21 +05:30
DateDisplay.py\
2003-03-07 07:51:18 +05:30
DateEdit.py\
DateHandler.py\
2006-03-02 23:36:21 +05:30
DateParser.py\
Date.py\
DdTargets.py\
DisplayModels.py\
2006-03-02 23:36:21 +05:30
DisplayState.py\
DisplayTabs.py\
2003-03-07 07:51:18 +05:30
DisplayTrace.py\
Errors.py\
2006-03-02 23:36:21 +05:30
EventView.py\
Exporter.py\
FamilyList.py\
2003-03-07 07:51:18 +05:30
FamilyView.py\
FontScale.py\
GenericFilter.py\
GrampsCfg.py\
2005-12-06 12:08:09 +05:30
GrampsDisplay.py\
2006-03-02 23:36:21 +05:30
GrampsLocale.py\
2003-03-07 07:51:18 +05:30
gramps_main.py\
gramps.py\
2006-03-02 23:36:21 +05:30
GrampsWidgets.py\
2003-03-07 07:51:18 +05:30
ImgManip.py\
latin_ansel.py\
ListModel.py\
2006-03-02 23:36:21 +05:30
MapView.py\
2003-03-07 07:51:18 +05:30
MediaView.py\
MergeData.py\
MergePeople.py\
2005-01-01 09:57:15 +05:30
NameDisplay.py\
2006-03-02 23:36:21 +05:30
Navigation.py\
Options.py\
PageView.py\
2003-03-07 07:51:18 +05:30
PaperMenu.py\
PedView.py\
2004-04-07 07:41:32 +05:30
PeopleModel.py\
2006-03-02 23:36:21 +05:30
PersonView.py\
2003-03-07 07:51:18 +05:30
PlaceView.py\
PluginMgr.py\
2006-03-02 23:36:21 +05:30
Plugins.py\
2003-03-07 07:51:18 +05:30
QuestionDialog.py\
2006-03-02 23:36:21 +05:30
RecentFiles.py\
Relationship.py\
2003-03-07 07:51:18 +05:30
RelImage.py\
2006-03-02 23:36:21 +05:30
ReportOptions.py\
2003-03-07 07:51:18 +05:30
Report.py\
ReportUtils.py\
2006-03-02 23:36:21 +05:30
RepositoryView.py\
ScratchPad.py\
2003-03-07 07:51:18 +05:30
SelectChild.py\
2006-03-02 23:36:21 +05:30
SelectEvent.py\
SelectObject.py\
2006-03-02 23:36:21 +05:30
SelectPerson.py\
Sort.py\
2003-03-07 07:51:18 +05:30
soundex.py\
Sources.py\
SourceView.py\
2006-03-02 23:36:21 +05:30
Spell.py\
2003-03-07 07:51:18 +05:30
SpreadSheetDoc.py\
StartupDialog.py\
StyleEditor.py\
SubstKeywords.py\
TipOfDay.py\
2006-03-02 23:36:21 +05:30
Tool.py\
ToolTips.py\
TransUtils.py\
TreeTips.py\
2003-03-07 07:51:18 +05:30
Utils.py\
2006-03-02 23:36:21 +05:30
ViewManager.py\
WindowUtils.py\
Witness.py
2002-10-20 19:55:16 +05:30
# Could use GNU make's ':=' syntax for nice wildcard use.
2002-10-20 19:55:16 +05:30
# If not using GNU make, then list all files individually
# The latter is more portable and POSIX-friendly :)
2003-03-07 07:51:18 +05:30
GLADEFILES = \
gramps.glade\
edit_person.glade\
2003-03-07 07:51:18 +05:30
mergedata.glade\
plugins.glade\
rule.glade\
scratchpad.glade
2003-03-07 07:51:18 +05:30
2002-10-20 19:55:16 +05:30
# Other stuff that we need to install
dist_pkgdata_DATA = $(GLADEFILES)
2002-10-20 19:55:16 +05:30
# In principle the following rule slightly violates the automake/autoconf
# spirit of keeping each subdirectory as a separate entity unto itself.
# But, since the template depends on everything from here, we allow this
# one exception.
# Build po/template.po.
.PHONY: trans
trans:
2002-10-20 19:55:16 +05:30
./build_po
pycheck:
for d in $(SUBDIRS) ; do \
(cd $$d; make pycheck); \
done;
pychecker $(gdir_PYTHON)
2002-10-20 19:55:16 +05:30
docs:
epydoc -o doc --url http://gramps.sourceforge.net --name GRAMPS --html $(docfiles)
epydoc --pdf $(docfiles)
2005-12-06 12:08:09 +05:30
cmdplug:
./build_cmdplug