blob: cdbcc191182d60cfdb641decf9f29f947e6afece (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
TESTS = $(shell find test/ -name '*.test.js')
test:
@NODE_ENV=test ./support/expresso/bin/expresso \
$(TESTFLAGS) \
$(TESTS)
@node test/dropdb.js
test-cov:
@TESTFLAGS=--cov $(MAKE) test
docs: docs/api.html
docs/api.html: lib/mongoose/*.js
dox \
--private \
--title Mongooose \
--desc "Expressive MongoDB for Node.JS" \
$(shell find lib/mongoose/* -type f) > $@
docclean:
rm -f docs/*.{1,html}
.PHONY: test test-cov docs docclean
|