summaryrefslogtreecommitdiff
path: root/services/github/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'services/github/Makefile')
-rw-r--r--services/github/Makefile16
1 files changed, 14 insertions, 2 deletions
diff --git a/services/github/Makefile b/services/github/Makefile
index 0b4264d..9b344b7 100644
--- a/services/github/Makefile
+++ b/services/github/Makefile
@@ -3,8 +3,13 @@ VALIDATOR := perl ../../utils/validator.pl --schema spore_validation.rx --descri
SPORE2DOT := perl ../../utils/spore2dot.pl
check: spore_validation.rx
- @$(VALIDATOR) repository.json
@$(VALIDATOR) user.json
+ @$(VALIDATOR) issue.json
+ @$(VALIDATOR) gist.json
+ @$(VALIDATOR) network.json
+ @$(VALIDATOR) repository.json
+ @$(VALIDATOR) commit.json
+ @$(VALIDATOR) object.json
test: check
@@ -16,7 +21,14 @@ png: github.png
%.png : %.dot
dot -T png -o $@ $<
-github.dot: user.json repository.json
+github.dot: \
+ user.json \
+ issue.json \
+ gist.json \
+ network.json \
+ repository.json \
+ commit.json \
+ object.json
$(SPORE2DOT) $^ > $@
clean: