0d12dc08266d0fcd09b9778c0e582e98730f3108
[osm/IM.git] / Makefile
1 # Copyright 2017 Sandvine
2 # Copyright 2017-2018 Telefonica
3 # All Rights Reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may
6 # not use this file except in compliance with the License. You may obtain
7 # a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 # License for the specific language governing permissions and limitations
15 # under the License.
16
17 # NOTE: pyang and pyangbind are required for build
18
19 .PHONY: all clean package trees deps
20 PYANG:= pyang
21 PYBINDPLUGIN:=$(shell /usr/bin/env python3 -c \
22 'import pyangbind; import os; print("{}/plugin".format(os.path.dirname(pyangbind.__file__)))')
23
24 YANG_DESC_MODELS := vnfd nsd
25 YANG_RECORD_MODELS := vnfr nsr
26 PYTHON_MODELS := $(addsuffix .py, $(YANG_DESC_MODELS))
27 YANG_DESC_TREES := $(addsuffix .tree.txt, $(YANG_DESC_MODELS))
28 YANG_DESC_JSTREES := $(addsuffix .html, $(YANG_DESC_MODELS))
29 YANG_RECORD_TREES := $(addsuffix .rec.tree.txt, $(YANG_RECORD_MODELS))
30 YANG_RECORD_JSTREES := $(addsuffix .rec.html, $(YANG_RECORD_MODELS))
31
32 OUT_DIR := osm_im
33 TREES_DIR := osm_im_trees
34 MODEL_DIR := models/yang
35 Q?=@
36
37 PYANG_OPTIONS := -Werror
38
39 all: $(PYTHON_MODELS) trees
40 $(MAKE) package
41
42 trees: $(YANG_DESC_TREES) $(YANG_DESC_JSTREES) $(YANG_RECORD_TREES) $(YANG_RECORD_JSTREES)
43
44 $(OUT_DIR):
45 $(Q)mkdir -p $(OUT_DIR)
46 $(Q)touch $(OUT_DIR)/__init__.py
47
48 $(TREES_DIR):
49 $(Q)mkdir -p $(TREES_DIR)
50
51 %.py: $(OUT_DIR)
52 $(Q)echo generating $@ from $*.yang
53 $(Q)pyang $(PYANG_OPTIONS) --path $(MODEL_DIR) --plugindir $(PYBINDPLUGIN) -f pybind -o $(OUT_DIR)/$@ $(MODEL_DIR)/$*.yang
54
55 %.tree.txt: $(TREES_DIR)
56 $(Q)echo generating $@ from $*.yang
57 $(Q)pyang $(PYANG_OPTIONS) --path $(MODEL_DIR) -f tree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
58
59 %.html: $(TREES_DIR)
60 $(Q)echo generating $@ from $*.yang
61 $(Q)pyang $(PYANG_OPTIONS) --path $(MODEL_DIR) -f jstree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
62 $(Q)sed -r -i 's|data\:image/gif\;base64,R0lGODlhS.*RCAA7|https://osm.etsi.org/images/OSM-logo.png\" width=\"175\" height=\"60|g' $(TREES_DIR)/$@
63 $(Q)sed -r -i 's|<a href=\"http://www.tail-f.com">|<a href="http://osm.etsi.org">|g' $(TREES_DIR)/$@
64
65 %.rec.tree.txt: $(TREES_DIR)
66 $(Q)echo generating $@ from $*.yang
67 $(Q)pyang $(PYANG_OPTIONS) --path $(MODEL_DIR) -f tree -o $(TREES_DIR)/$@ $(MODEL_DIR)/$*.yang
68 $(Q)mv $(TREES_DIR)/$@ $(TREES_DIR)/$*.tree.txt
69
70 %.rec.html: $(TREES_DIR)
71 $(Q)echo generating $@ from $*.yang
72 $(Q)pyang $(PYANG_OPTIONS) --path $(MODEL_DIR) -f jstree -o $(TREES_DIR)/$@ $(MODEL_DIR)/rw-project.yang $(MODEL_DIR)/$*.yang
73 $(Q)sed -r -i 's|data\:image/gif\;base64,R0lGODlhS.*RCAA7|https://osm.etsi.org/images/OSM-logo.png\" width=\"175\" height=\"60|g' $(TREES_DIR)/$@
74 $(Q)sed -r -i 's|<a href=\"http://www.tail-f.com">|<a href="http://osm.etsi.org">|g' $(TREES_DIR)/$@
75 $(Q)mv $(TREES_DIR)/$@ $(TREES_DIR)/$*.html
76
77 package:
78 tox -e build
79 tox -e build3
80 ./build-docs.sh
81
82 deps:
83 $(Q)sudo apt-get -y install git make wget python python-pip debhelper dh-make tox python3 python3-pip maven
84 $(Q)sudo -H python3 -m pip install -U pip
85 $(Q)sudo -H python2 -m pip install -U pip
86 $(Q)sudo -H python3 -m pip install -U pyang pyangbind stdeb
87 $(Q)sudo -H python2 -m pip install -U pyang pyangbind stdeb
88 $(Q)mkdir -p ~/.m2
89 $(Q)cp -n ~/.m2/settings.xml{,.orig} ; wget -q -O - https://raw.githubusercontent.com/opendaylight/odlparent/master/settings.xml > ~/.m2/settings.xml
90
91 clean:
92 $(Q)rm -rf dist osm_im.egg-info deb deb_dist *.gz $(OUT_DIR) $(TREES_DIR)