swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: eed11d424191c0e91f167013a3a89f68f0f7bb68 authored by Antoine R. Dumont (@ardumont) on 10 September 2018, 09:36:27 UTC
New upstream version 0.0.105
Tip revision: eed11d4
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