swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: bee73bed6de377f6c88ae70c5c83262adb38ab03 authored by Antoine R. Dumont (@ardumont) on 06 December 2019, 10:11:52 UTC
storage.buffer: Buffer release objects as well
Tip revision: bee73be
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