File: Makefile

package info (click to toggle)
isospec 2.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,476 kB
  • sloc: cpp: 9,530; python: 2,095; makefile: 180; ansic: 100; sh: 88
file content (19 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This Makefile is not meant for end-users, only as a convenience for developers. Do not touch.
reinstall: clean
	pip uninstall -y IsoSpecPy ; pip uninstall -y IsoSpecPy ; pip uninstall -y IsoSpecPy || true
	python setup.py install --user

reinstallall: reinstall2 reinstall3
rea: reinstallall

reinstall2: clean
	pip2 uninstall -y IsoSpecPy ; pip2 uninstall -y IsoSpecPy ; pip2 uninstall -y IsoSpecPy || true
	python2 setup.py install --user
reinstall3: clean
	pip3 uninstall -y IsoSpecPy ; pip3 uninstall -y IsoSpecPy ; pip3 uninstall -y IsoSpecPy || true
	python3 setup.py install --user
clean:
	rm -rf IsoSpecPy.egg-info build dist
twine: clean
	python setup.py sdist
	twine upload dist/*