blob: 64435652c16330b239c33823ea67ee7b517504d5 [file] [log] [blame]
Joey Armstrong9f7c57c2024-05-03 18:29:30 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2023-2024 Open Networking Foundation Contributors
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain 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,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# -----------------------------------------------------------------------
17# SPDX-FileCopyrightText: 2023-2024 Open Networking Foundation Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
20# Intent:
21# -----------------------------------------------------------------------
22
23--repo-name-- := voltha-docs
24--repo-name-- ?= $(error --repo-name--= is required)
25
26##--------------------------------##
27##---] Disable lint targets [---##
28##--------------------------------##
29# NO-LINT-DOC8 := true
30# USE_DOC8_INI := true
31# NO-LINT-GOLANG := true
32NO-LINT-GROOVY := true# # Note[1]
33# NO-LINT-JJB := true# # Note[2]
34# NO-LINT-JSON := true# # Note[1]
35NO-LINT-MAKEFILE := true# # Note[1]
36NO-LINT-REUSE := true # License check
37# NO-LINT-ROBOT := true
38NO-LINT-SHELL := true# # Note[1]
39# NO-LINT-TOX := true# # Note[1]
40NO-LINT-YAML := true# # Note[1]
41
42NO-LINT-FLAKE8 := true# # Note[1]
43# NO-LINT-PYTHON := true# # Note[1]
44NO-LINT-PYLINT := true# # Note[1]
45
46# Note[1] - A boatload of source to cleanup prior to enable.
47# Note[2] - No sources available
48
49##---------------------------------##
50##---] Conditional make logic [---##
51##---------------------------------##
52# USE-ONF-DOCKER-MK := true
53# USE-ONF-GERRIT-MK := true
54# USE-ONF-GIT-MK := true
55# USE-ONF-JJB-MK := true
56# USE-VOLTHA-RELEASE-MK := true
57
58##----------------------##
59##---] Debug Mode [---##
60##----------------------##
61# export DEBUG := 1 # makefile debug
62# export DISTUTILS_DEBUG := 1 # verbose: pip
63# export DOCKER_DEBUG := 1 # verbose: docker
64# export VERBOSE := 1 # makefile debug
65
66##-----------------------------------##
67##---] JJB/Jenkins Job Builder [---##
68##-----------------------------------##
69JJB_VERSION ?= 2.8.0
70JOBCONFIG_DIR ?= job-configs
71
72##---------------------------------##
73##---] Filesystem exclusions [---##
74##---------------------------------##
75onf-excl-dirs := $(null) # make clean: dirs=
76onf-excl-dirs += lf/onf-make # repo:onf-make git submodule
77onf-excl-dirs += .venv# # $(venv-name)
78onf-excl-dirs += vendor# # golang / voltha*-go
79onf-excl-dirs += patches# # voltha docs - python upgrade
80onf-excl-dirs += .tmp #
81onf-excl-dirs += .tox # also a python dependency
82# onf-excl-dirs += vendor# # golang / voltha*-go -- local exclude
83
84# [NOTE] Add exclusions: lint/doc8/doc8.incl
85
86ifeq ($(--repo-name--),voltha-docs)
87 lint-doc8-excl += '_build' # TODO: deprecate
88endif
89
90onf-excl-dirs ?= $(error onf-excl-dirs= is required)
91
92##-----------------------------##
93##---] Feature Detection [---##
94##-----------------------------##
95# [TODO] include makefiles/features/include.mk
96# [TODO] All logic below can migrate there.
97
98$(if $(filter %ci-management,$(--repo-name--)),\
99 $(eval --REPO-IS-CI-MANAGEMENT-- := true)\
100)
101
102$(if $(filter %voltha-docs,$(--repo-name--)),\
103 $(eval --REPO-IS-VOLTHA-DOCS-- := true)\
104)
105
106# create makefiles/config/byrepo/{--repo-name--}.mk for one-off snowflakes ?
107# $(if $(wildcard docker),$(eval USE-ONF-DOCKER-MK := true))
108
109##-------------------------##
110##---] Derived Flags [---##
111##-------------------------##
112ifdef --REPO-IS-CI-MANAGEMENT--
113 USE-ONF-JJB := true
114
115 onf-excl-dirs += global-jjb
116 onf-excl-dirs += lf-ansible
117 onf-excl-dirs += packer
118endif
119
120ifdef --REPO-IS-VOLTHA-DOCS--
121 onf-excl-dirs += _build
122 onf-excl-dirs += repos
123endif
124
125ifdef NO-LINT-PYTHON
126 NO-LINT-FLAKE8 := true
127 NO-LINT-PYLINT := true
128endif
129
130ifndef USE-ONF-JJB
131 NO-LINT-JJB := true
132endif
133
134onf-excl-dirs := $(sort $(strip $(onf-excl-dirs)))
135
136# --------------------------------------------------------------------
137# Repository specific values
138# --------------------------------------------------------------------
139# sterile-dirs += archives
140
141# [EOF]