Joey Armstrong | 9f7c57c | 2024-05-03 18:29:30 -0400 | [diff] [blame^] | 1 | # -*- 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 |
| 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-TOX := true# # Note[1] |
| 40 | NO-LINT-YAML := true# # Note[1] |
| 41 | |
| 42 | NO-LINT-FLAKE8 := true# # Note[1] |
| 43 | # NO-LINT-PYTHON := true# # Note[1] |
| 44 | NO-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 | ##-----------------------------------## |
| 69 | JJB_VERSION ?= 2.8.0 |
| 70 | JOBCONFIG_DIR ?= job-configs |
| 71 | |
| 72 | ##---------------------------------## |
| 73 | ##---] Filesystem exclusions [---## |
| 74 | ##---------------------------------## |
| 75 | onf-excl-dirs := $(null) # make clean: dirs= |
| 76 | onf-excl-dirs += lf/onf-make # repo:onf-make git submodule |
| 77 | onf-excl-dirs += .venv# # $(venv-name) |
| 78 | onf-excl-dirs += vendor# # golang / voltha*-go |
| 79 | onf-excl-dirs += patches# # voltha docs - python upgrade |
| 80 | onf-excl-dirs += .tmp # |
| 81 | onf-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 | |
| 86 | ifeq ($(--repo-name--),voltha-docs) |
| 87 | lint-doc8-excl += '_build' # TODO: deprecate |
| 88 | endif |
| 89 | |
| 90 | onf-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 | ##-------------------------## |
| 112 | ifdef --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 |
| 118 | endif |
| 119 | |
| 120 | ifdef --REPO-IS-VOLTHA-DOCS-- |
| 121 | onf-excl-dirs += _build |
| 122 | onf-excl-dirs += repos |
| 123 | endif |
| 124 | |
| 125 | ifdef NO-LINT-PYTHON |
| 126 | NO-LINT-FLAKE8 := true |
| 127 | NO-LINT-PYLINT := true |
| 128 | endif |
| 129 | |
| 130 | ifndef USE-ONF-JJB |
| 131 | NO-LINT-JJB := true |
| 132 | endif |
| 133 | |
| 134 | onf-excl-dirs := $(sort $(strip $(onf-excl-dirs))) |
| 135 | |
| 136 | # -------------------------------------------------------------------- |
| 137 | # Repository specific values |
| 138 | # -------------------------------------------------------------------- |
| 139 | # sterile-dirs += archives |
| 140 | |
| 141 | # [EOF] |