summaryrefslogtreecommitdiff
path: root/services/Makefile
blob: 7126764b2570b7e90fbb6c1c7b172bb6174cebf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
VALIDATOR := perl ../utils/validator.pl --schema spore_validation.rx --description

check: spore_validation.rx
	@make -C github check
	@$(VALIDATOR) backtweet.json
	@$(VALIDATOR) backtype.json
	@$(VALIDATOR) github.json
	@$(VALIDATOR) ihackernews.json
	@$(VALIDATOR) twitter.json

test: check

spore_validation.rx:
	wget http://github.com/SPORE/specifications/raw/master/spore_validation.rx

clean:
	@make -C github clean
	-rm spore_validation.rx