Reorganize files, set up testings

This commit is contained in:
lash
2023-03-09 08:30:47 +00:00
parent 73e53c6859
commit 929a042c95
24 changed files with 141 additions and 11 deletions

View File

@@ -1,8 +1,17 @@
all: build
all: json rdf python
build:
python bundle.py > cic.json
.PHONY: json rdf python
test: build
check-jsonschema --schemafile dist/cic.json test_valid.json
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