Skip to content
Snippets Groups Projects
Commit a20a5d36 authored by Antony Lesuisse's avatar Antony Lesuisse
Browse files

cloc target in makefile, 5070 lines atm

bzr revid: al@openerp.com-20110407221740-6dbryyx58alqxo0m
parent f2ba78f5
Branches
Tags
No related merge requests found
Makefile 0 → 100644
.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
cloc:
cloc openerpweb/*.py addons/*/controllers/*.py addons/*/static/src/*.js addons/*/static/src/js/*.js addons/*/static/src/css/*.css addons/*/static/src/xml/*.xml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment