cic-schema/Makefile

25 lines
336 B
Makefile
Raw Normal View History

2023-03-09 09:30:47 +01:00
all: json rdf python
2023-03-05 11:13:02 +01:00
2023-03-09 09:30:47 +01:00
.PHONY: json rdf python
2023-03-05 10:59:41 +01:00
2023-03-09 09:30:47 +01:00
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
2023-05-24 09:47:03 +02:00
doc:
make -C doc/texinfo
readme: doc
make -C doc/texinfo readme
pandoc -f docbook -t gfm doc/texinfo/build/docbook.xml > README.md