-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMakefile
86 lines (62 loc) · 1.95 KB
/
Makefile
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Reference card for usual actions in development environment.
#
# For standard installation, see INSTALL.
# For details about development environment, see CONTRIBUTING.rst.
#
PIP ?= pip
TOX ?= tox
PROJECT := $(shell python -c "import setup; print setup.NAME")
#: help - Display callable targets.
.PHONY:
help:
@echo "Reference card for usual actions in development environment."
@echo "Here are available targets:"
@egrep -o "^#: (.+)" [Mm]akefile | sed 's/#: /* /'
#: lib/odoo-addons/web_selenium - Clone repository of 'web_selenium' addon for Odoo.
lib/odoo-addons/web_selenium:
mkdir -p lib/odoo-addons
git clone -b 8.0 https://github.com/brain-tec/web_selenium.git ./web_selenium
mv ./web_selenium lib/odoo-addons/web_selenium
#: develop - Install minimal development utilities.
.PHONY: develop
develop: lib/odoo-addons/web_selenium
$(PIP) install -e .[test] erppeek
#: odoo-start - Run and setup Odoo development server using Docker.
.PHONY: odoo-start
odoo-start:
python -c "import init_odoo;init_odoo.odoo_start();init_odoo.odoo_setup()"
#: odoo-stop - Stop Odoo development server using Docker.
.PHONY: odoo-stop
odoo-stop:
python -c "import init_odoo;init_odoo.odoo_stop()"
#: clean - Basic cleanup, mostly temporary files.
.PHONY: clean
clean:
find . -name '*.pyc' -delete
find . -name '*.pyo' -delete
#: distclean - Remove local builds, such as *.egg-info.
.PHONY: distclean
distclean: clean
rm -rf *.egg
rm -rf *.egg-info
#: maintainer-clean - Remove almost everything that can be re-generated.
.PHONY: maintainer-clean
maintainer-clean: distclean
rm -rf build/
rm -rf dist/
rm -rf .tox/
#: test - Run test suites.
.PHONY: test
test:
$(TOX)
#: documentation - Build documentation (Sphinx, README, ...)
.PHONY: documentation
documentation: readme
#: readme - Build standalone documentation files (README, CONTRIBUTING...).
.PHONY: readme
readme:
$(TOX) -e readme
#: release - Tag and push to PyPI.
.PHONY: release
release:
$(TOX) -e release