swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 0eb309e02dd38022ed3af1facb291b1a31f4b7e1 authored by Valentin Lorentz on 31 July 2020, 11:00:42 UTC
Rename argument 'object_type' of raw_extrinsic_metadata_get to 'type'.
Tip revision: 0eb309e
Makefile
# Depends: json-glib-tools

JSONVAL = json-glib-validate
JSONS = $(wildcard *.json)

all: validate
check: validate
test: validate

validate: validate-stamp
validate-stamp: $(JSONS)
	make $(patsubst %,validate/%,$?)
	touch $@

validate/%:
	$(JSONVAL) $*

clean:
	rm -f validate-stamp
back to top