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 |
.PHONY: all release clean HOST = 127.0.0.1 PORT = 8080 all: run run: python openerp-web.py -a ${HOST} -p ${PORT} release: python setup.py sdist install: python setup.py install clean: @find . -name '*.pyc' -exec rm -f {} + @find . -name '*.pyo' -exec rm -f {} + @find . -name '*.swp' -exec rm -f {} + @find . -name '*~' -exec rm -f {} + @rm -rf build @rm -rf dist @rm -rf *.egg-info |