swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: ce5d2bf433c8abede78a019b6646759411579b5f authored by Antoine R. Dumont (@ardumont) on 26 March 2020, 13:36:45 UTC
storage*: Update origin_visit_update to make status parameter mandatory
Tip revision: ce5d2bf
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