13 lines
180 B
Makefile
13 lines
180 B
Makefile
|
all: build
|
||
|
|
||
|
build:
|
||
|
python bundle.py
|
||
|
|
||
|
|
||
|
test: build
|
||
|
check-jsonschema --schemafile dist/cic.json test_valid.json
|
||
|
|
||
|
|
||
|
install: build
|
||
|
cp -v dist/cic.json ../../python/cic_schema/data/
|