File: Makefile.am

package info (click to toggle)
zeitgeist 1.0.4-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,440 kB
  • sloc: python: 8,116; cpp: 3,006; ansic: 1,298; sql: 1,192; makefile: 951; javascript: 753; sh: 156
file content (25 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
NULL =

appdir = $(pythondir)/zeitgeist/

app_PYTHON = \
	__init__.py \
	datamodel.py \
	client.py \
	mimetypes.py \
	_ontology.py \
	$(NULL)

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)$(PYTHON) $(top_srcdir)/data/ontology2code --dump-python >> $@

CLEANFILES = \
	_ontology.py \
	$(NULL)

all-local: _ontology.py