swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: bf77f143f065739c428a78e3d638073ad74c0a29 authored by Antoine R. Dumont (@ardumont) on 17 January 2020, 12:55:36 UTC
storage.retry: Fix objects loading when using generator parameters
Tip revision: bf77f14
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