swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 6c70e4f5bebeb0f2b13b08dbd7b0c463aede0fcd authored by Jenkins for Software Heritage on 18 April 2019, 16:08:29 UTC
Updated debian changelog for version 0.0.139
Tip revision: 6c70e4f
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