summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorSiegfried-Angel Gevatter Pujals <siegfried@gevatter.com>2012-11-07 23:16:44 +0100
committerSiegfried-Angel Gevatter Pujals <siegfried@gevatter.com>2012-11-07 23:16:44 +0100
commit0c157c1577925181934b2a2a453f280a9e92c6cd (patch)
tree4929408bd42a7325a5fd41c2fdaecf595861c527 /python
parent7c4ec336a8cc4e5650058e0dc63132fa01a26f1b (diff)
downloadzeitgeist-0c157c1577925181934b2a2a453f280a9e92c6cd.tar.gz
Documentation and autotools fixes
- Added a custom index page for the C documentation - Removed duplicate Vala documentation - Added missing documentation, titles, fixed links, etc. - Fixed autotools to updated the docs whenever needed - Fixed autotools to update the ontology files whenever needed - Updated AUTHORS, added content to README
Diffstat (limited to 'python')
-rw-r--r--python/Makefile.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/python/Makefile.am b/python/Makefile.am
index cf2f1c46..7d160823 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -10,8 +10,11 @@ app_PYTHON = \
_ontology.py \
$(NULL)
-# FIXME: can we make this depend on $(ontology_trig_DATA)?
-_ontology.py:
+ONTOLOGY = \
+ $(wildcard $(top_srcdir)/data/ontology/*.trig) \
+ $(NULL)
+
+_ontology.py: $(ONTOLOGY) $(top_srcdir)/data/ontology2code
@echo -e "#\n# Auto-generated from .trig files. Do not edit.\n#" > $@
$(AM_V_GEN)$(top_srcdir)/data/ontology2code --dump-python >> $@