gramps/gramps2/src/Makefile.am

174 lines
3.1 KiB
Makefile
Raw Normal View History

# $Id$
2002-10-20 14:25:16 +00:00
# This is the src level Makefile for Gramps
SUBDIRS = \
docgen \
plugins \
dates \
data \
po \
GrampsDb \
RelLib \
ObjectSelector \
GrampsLogger \
TreeViews \
Config \
Mime \
images \
Editors
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\
2006-03-03 00:34:20 +00:00
EditAddress.py\
2003-03-07 02:21:18 +00:00
ansel_utf8.py\
2006-03-02 18:06:21 +00:00
ArgHandler.py\
Assistant.py\
2006-03-03 00:34:20 +00:00
EditAttribute.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\
2006-03-02 18:06:21 +00:00
EditEventRef.py\
EditFamily.py\
EditMedia.py\
EditMediaRef.py\
2003-03-07 02:21:18 +00:00
EditPerson.py\
EditPlace.py\
2006-03-02 18:06:21 +00:00
EditPrimary.py\
EditRepository.py\
EditSecondary.py\
2003-03-07 02:21:18 +00:00
EditSource.py\
2006-03-02 18:06:21 +00:00
EditSourceRef.py\
2003-03-07 02:21:18 +00:00
Errors.py\
2006-03-04 04:31:50 +00:00
EditEvent.py\
2006-03-02 18:06:21 +00:00
EventView.py\
Exporter.py\
FamilyList.py\
2003-03-07 02:21:18 +00:00
FamilyView.py\
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\
2006-03-03 00:38:41 +00:00
EditLocation.py\
2006-03-02 18:06:21 +00:00
MapView.py\
2003-03-07 02:21:18 +00:00
MediaView.py\
MergeData.py\
MergePeople.py\
2005-01-01 04:27:15 +00:00
NameDisplay.py\
2006-03-04 04:31:50 +00:00
EditName.py\
2006-03-02 18:06:21 +00:00
Navigation.py\
Options.py\
PageView.py\
2003-03-07 02:21:18 +00:00
PaperMenu.py\
PedView.py\
2004-04-07 02:11:32 +00:00
PeopleModel.py\
2006-03-02 18:06:21 +00:00
PersonView.py\
2003-03-07 02:21:18 +00:00
PlaceView.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\
2006-03-02 18:06:21 +00:00
RepositoryView.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\
SourceView.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\
EditUrl.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