blob: ca3051dd44f17d4192c836219e36388cbc39f331 (
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
26
27
28
29
30
31
32
33
34
35
36
37
|
.PHONY: build sdist cover test clean-files clean-docs doc all
all:
$(info Possible targets:)
$(info doc)
$(info clean-docs)
$(info clean-files)
$(info clean)
$(info test)
$(info coverage)
$(info build)
$(info sdist)
doc:
cd docs && make html
clean-docs:
cd docs && make clean
clean-files:
git clean -fx
clean: clean-files clean-docs
test:
nosetests
coverage:
nosetests --with-coverage --cover-package=smmap
build:
./setup.py build
sdist:
./setup.py sdist
|