swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: b093a5a9e7f2d5a94386caecb5922cfc7bbac0eb authored by Antoine Lambert on 20 February 2020, 12:24:02 UTC
retry: Add support for tenacity < 5.0
Tip revision: b093a5a
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