blob: 27a92963887b10510f76370174bd5f908bb309c1 [file] [log] [blame]
Joey Armstrongfe2bf572024-04-29 12:20:35 -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-- := onf-make
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
32# NO-LINT-GROOVY := true# # Note[1]
33# NO-LINT-JJB := true# # Note[2]
34# NO-LINT-JSON := true# # Note[1]
35# NO-LINT-MAKEFILE := true# # Note[1]
36# NO-LINT-REUSE := true # License check
37# NO-LINT-ROBOT := true
38# NO-LINT-SHELL := true# # Note[1]
39# NO-LINT-YAML := true# # Note[1]
40
41# NO-LINT-FLAKE8 := true# # Note[1]
42# NO-LINT-PYTHON := true# # Note[1]
43# NO-LINT-PYLINT := true# # Note[1]
44
45# Note[1] - A boatload of source to cleanup prior to enable.
46# Note[2] - No sources available
47
48##---------------------------------##
49##---] Conditional make logic [---##
50##---------------------------------##
51# USE-ONF-DOCKER-MK := true
52# USE-ONF-GERRIT-MK := true
53# USE-ONF-GIT-MK := true
54# USE-ONF-JJB-MK := true
55# USE-VOLTHA-RELEASE-MK := true
56
57##----------------------##
58##---] Debug Mode [---##
59##----------------------##
60# export DEBUG := 1 # makefile debug
61# export DISTUTILS_DEBUG := 1 # verbose: pip
62# export DOCKER_DEBUG := 1 # verbose: docker
63# export VERBOSE := 1 # makefile debug
64
65##-----------------------------------##
66##---] JJB/Jenkins Job Builder [---##
67##-----------------------------------##
68JJB_VERSION ?= 2.8.0
69JOBCONFIG_DIR ?= job-configs
70
71##---------------------------------##
72##---] Filesystem exclusions [---##
73##---------------------------------##
74onf-excl-dirs := $(null) # make clean: dirs=
75onf-excl-dirs += lf/onf-make # repo:onf-make git submodule
76onf-excl-dirs += .venv# # $(venv-name)
77onf-excl-dirs += patches# # voltha docs - python upgrade
78onf-excl-dirs += .tmp #
79onf-excl-dirs += .tox # also a python dependency
80# onf-excl-dirs += vendor# # golang / voltha*-go -- local exclude
81
82# [NOTE] Add exclusions: lint/doc8/doc8.incl
83
84ifeq ($(--repo-name--),voltha-docs)
85 lint-doc8-excl += '_build' # TODO: deprecate
86endif
87
88onf-excl-dirs ?= $(error onf-excl-dirs= is required)
89
90##-----------------------------##
91##---] Feature Detection [---##
92##-----------------------------##
93# [TODO] include makefiles/features/include.mk
94# [TODO] All logic below can migrate there.
95
96$(if $(filter %ci-management,$(--repo-name--)),\
97 $(eval --REPO-IS-CI-MANAGEMENT-- := true)\
98)
99
100$(if $(filter %voltha-docs,$(--repo-name--)),\
101 $(eval --REPO-IS-VOLTHA-DOCS-- := true)\
102)
103
104# create makefiles/config/byrepo/{--repo-name--}.mk for one-off snowflakes ?
105# $(if $(wildcard docker),$(eval USE-ONF-DOCKER-MK := true))
106
107##-------------------------##
108##---] Derived Flags [---##
109##-------------------------##
110ifdef --REPO-IS-CI-MANAGEMENT--
111 USE-ONF-JJB := true
112
113 onf-excl-dirs += global-jjb
114 onf-excl-dirs += lf-ansible
115 onf-excl-dirs += packer
116endif
117
118ifdef --REPO-IS-VOLTHA-DOCS--
119 onf-excl-dirs += _build
120 onf-excl-dirs += repos
121endif
122
123ifdef NO-LINT-PYTHON
124 NO-LINT-FLAKE8 := true
125 NO-LINT-PYLINT := true
126endif
127
128ifndef USE-ONF-JJB
129 NO-LINT-JJB := true
130endif
131
132onf-excl-dirs := $(sort $(strip $(onf-excl-dirs)))
133
134# --------------------------------------------------------------------
135# Repository specific values
136# --------------------------------------------------------------------
137# sterile-dirs += archives
138
139# [EOF]