gramps/gramps2/src/Makefile.am

148 lines
2.7 KiB
Makefile
Raw Normal View History

# $Id$
2002-10-20 14:25:16 +00:00
# This is the src level Makefile for Gramps
SUBDIRS = \
2006-03-04 15:37:04 +00:00
Config \
DataViews \
Editors \
GrampsDb \
GrampsLogger \
Mime \
2006-03-04 06:34:48 +00:00
Models \
2006-03-04 15:37:04 +00:00
ObjectSelector \
RelLib \
TreeViews \
data \
dates \
docgen \
images \
2006-03-04 15:37:04 +00:00
plugins \
po
2002-10-20 14:25:16 +00:00
# For intl. support, how do we compile?
MOSTLYCLEANFILES =
CLEANFILES = const.pyc const.pyo
2002-10-20 14:25:16 +00:00
# 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 02:21:18 +00:00
gdirdir=$(prefix)/share/gramps
docfiles = \
RelLib.py \
Date.py \
DateParser.py \
DateDisplay.py \
GrampsDbBase.py
gdir_PYTHON = \
2003-03-07 02:21:18 +00:00
AddMedia.py\
ansel_utf8.py\
2006-03-02 18:06:21 +00:00
ArgHandler.py\
Assistant.py\
2003-03-07 02:21:18 +00:00
AutoComp.py\
2003-09-03 14:17:53 +00:00
BaseDoc.py\
2003-03-07 02:21:18 +00:00
Bookmarks.py\
ColumnOrder.py\
2006-03-02 21:28:27 +00:00
const.py\
2006-03-02 18:06:21 +00:00
DateDisplay.py\
2003-03-07 02:21:18 +00:00
DateEdit.py\
DateHandler.py\
2006-03-02 18:06:21 +00:00
DateParser.py\
Date.py\
DdTargets.py\
DisplayModels.py\
2006-03-02 18:06:21 +00:00
DisplayState.py\
DisplayTabs.py\
2003-03-07 02:21:18 +00:00
DisplayTrace.py\
Errors.py\
2006-03-02 18:06:21 +00:00
Exporter.py\
2003-03-07 02:21:18 +00:00
FontScale.py\
GenericFilter.py\
GrampsCfg.py\
2005-12-06 06:38:09 +00:00
GrampsDisplay.py\
2006-03-02 18:06:21 +00:00
GrampsLocale.py\
2003-03-07 02:21:18 +00:00
gramps_main.py\
gramps.py\
2006-03-02 18:06:21 +00:00
GrampsWidgets.py\
2003-03-07 02:21:18 +00:00
ImgManip.py\
latin_ansel.py\
ListModel.py\
MergeData.py\
MergePeople.py\
2005-01-01 04:27:15 +00:00
NameDisplay.py\
2006-03-02 18:06:21 +00:00
Navigation.py\
Options.py\
2003-03-07 02:21:18 +00:00
PaperMenu.py\
2004-04-07 02:11:32 +00:00
PeopleModel.py\
PluginMgr.py\
2006-03-02 18:06:21 +00:00
Plugins.py\
2003-03-07 02:21:18 +00:00
QuestionDialog.py\
2006-03-02 18:06:21 +00:00
RecentFiles.py\
Relationship.py\
2003-03-07 02:21:18 +00:00
RelImage.py\
2006-03-02 18:06:21 +00:00
ReportOptions.py\
2003-03-07 02:21:18 +00:00
Report.py\
ReportUtils.py\
ScratchPad.py\
2003-03-07 02:21:18 +00:00
SelectChild.py\
2006-03-02 18:06:21 +00:00
SelectEvent.py\
SelectObject.py\
2006-03-02 18:06:21 +00:00
SelectPerson.py\
Sort.py\
2003-03-07 02:21:18 +00:00
soundex.py\
Sources.py\
2006-03-02 18:06:21 +00:00
Spell.py\
2003-03-07 02:21:18 +00:00
SpreadSheetDoc.py\
StartupDialog.py\
StyleEditor.py\
SubstKeywords.py\
TipOfDay.py\
2006-03-02 18:06:21 +00:00
Tool.py\
ToolTips.py\
TransUtils.py\
TreeTips.py\
2003-03-07 02:21:18 +00:00
Utils.py\
2006-03-02 18:06:21 +00:00
ViewManager.py\
WindowUtils.py\
Witness.py
2002-10-20 14:25:16 +00:00
# Could use GNU make's ':=' syntax for nice wildcard use.
2002-10-20 14:25:16 +00:00
# If not using GNU make, then list all files individually
# The latter is more portable and POSIX-friendly :)
2003-03-07 02:21:18 +00:00
GLADEFILES = \
gramps.glade\
edit_person.glade\
2003-03-07 02:21:18 +00:00
mergedata.glade\
plugins.glade\
rule.glade\
scratchpad.glade
2003-03-07 02:21:18 +00:00
2002-10-20 14:25:16 +00:00
# Other stuff that we need to install
dist_pkgdata_DATA = $(GLADEFILES)
2002-10-20 14:25:16 +00:00
# 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 14:25:16 +00:00
./build_po
pycheck:
for d in $(SUBDIRS) ; do \
(cd $$d; make pycheck); \
done;
pychecker $(gdir_PYTHON)
2002-10-20 14:25:16 +00:00
docs:
epydoc -o doc --url http://gramps.sourceforge.net --name GRAMPS --html $(docfiles)
epydoc --pdf $(docfiles)
2005-12-06 06:38:09 +00:00
cmdplug:
./build_cmdplug