25 lines
336 B
Makefile
25 lines
336 B
Makefile
all: json rdf python
|
|
|
|
.PHONY: json rdf python
|
|
|
|
|
|
json:
|
|
make -C schema/json
|
|
|
|
rdf:
|
|
make -C schema/rdf
|
|
|
|
python:
|
|
make -C python
|
|
|
|
install: python
|
|
make -C schema/json install
|
|
make -C schema/rdf install
|
|
|
|
doc:
|
|
make -C doc/texinfo
|
|
|
|
readme: doc
|
|
make -C doc/texinfo readme
|
|
pandoc -f docbook -t gfm doc/texinfo/build/docbook.xml > README.md
|