cloc target in makefile, 5070 lines atm

bzr revid: al@openerp.com-20110407221740-6dbryyx58alqxo0m
This commit is contained in:
Antony Lesuisse 2011-04-08 00:17:40 +02:00
parent f2ba78f535
commit a20a5d36a5
1 changed files with 29 additions and 0 deletions

29
Makefile Normal file
View File

@ -0,0 +1,29 @@
.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