diff options
author | Francois Perrad <francois.perrad@gadz.org> | 2010-11-01 07:54:08 +0100 |
---|---|---|
committer | Francois Perrad <francois.perrad@gadz.org> | 2010-11-01 07:54:08 +0100 |
commit | fdff20755b7e78479a6d30d0213a2959b37b5400 (patch) | |
tree | 1f98729bd7a45c2f9a9000565e924d1f7dff111d | |
parent | spore2dot: add note (diff) | |
download | api-description-fdff20755b7e78479a6d30d0213a2959b37b5400.tar.gz |
add modularized CouchDB
-rw-r--r-- | apps/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/Makefile b/apps/Makefile index a9a6a72..52a1661 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -3,6 +3,7 @@ VALIDATOR := perl ../utils/validator.pl --schema spore_validation.rx --descripti SPORE2DOT := perl ../utils/spore2dot.pl check: spore_validation.rx + @make -C couchdb check @$(VALIDATOR) couchdb.json @$(VALIDATOR) presque.json @@ -14,6 +15,7 @@ spore_validation.rx: png: \ couchdb.png \ presque.png + @make -C couchdb png %.png : %.dot dot -T png -o $@ $< @@ -22,4 +24,5 @@ png: \ $(SPORE2DOT) $< > $@ clean: + @make -C couchdb clean -rm *.png *.dot spore_validation.rx |