swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 4c49b3fbee488f9c8c14db875892ac6fc0590d2f authored by Antoine Lambert on 25 January 2019, 15:14:58 UTC
storage.in_memory: Fix unknown revision handling in revision_log method
Tip revision: 4c49b3f
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