blob: 9f46b1eb08ca0b101cce899f033387fbd3001119 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
VALIDATOR := perl ../utils/validator.pl --schema spore_validation.rx --description
check: spore_validation.rx
@$(VALIDATOR) couchdb.json
@$(VALIDATOR) presque.json
test: check
spore_validation.rx:
wget http://github.com/SPORE/specifications/raw/master/spore_validation.rx
clean:
-rm spore_validation.rx
|