18 lines
200 B
Makefile
18 lines
200 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
|