summaryrefslogtreecommitdiff
path: root/Makefile
blob: a4fae8ed23a6ad3bcd11c6c054bc7838c62ef487 (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
38
39
40
41
42
43
44
45
46
PYTHON=python

help :
	@echo "The following make targets are available:"
	@echo "    help - print this message"
	@echo "    build - build python package"
	@echo "    install - install python package (local user)"
	@echo "    sinstall - install python package (system with sudo)"
	@echo "    remove - remove the package (local user)"
	@echo "    sremove - remove the package (system with sudo)"
	@echo "    clean - remove any temporary files"
	@echo "    notebook - launch ipython notebook"
build :
	$(PYTHON) setup.py build

install :
	$(PYTHON) setup.py install --user

sinstall :
	sudo $(PYTHON) setup.py install

remove :
	$(PYTHON) setup.py install --user --record files.txt
	tr '\n' '\0' < files.txt | xargs -0 rm -f --
	rm files.txt

sremove :
	$(PYTHON) setup.py install  --record files.txt
	tr '\n' '\0' < files.txt | sudo xargs -0 rm -f --
	rm files.txt

clean :
	$(PYTHON) setup.py clean

uploadpypi:
	python setup.py register
	python setup.py sdist upload -r pypi

rdoc:
	pandoc pandoc --from=markdown --to=rst --output=docs/source/readme.rst README.md


notebook :
	ipython notebook --matplotlib=inline  --notebook-dir=examples/