Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | 686d3b9 | 2023-09-15 17:59:59 -0400 | [diff] [blame] | 3 | # Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 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 |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 15 | # limitations under the License. |
Joey Armstrong | 686d3b9 | 2023-09-15 17:59:59 -0400 | [diff] [blame] | 16 | # ----------------------------------------------------------------------- |
| 17 | # SPDX-FileCopyrightText: 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ----------------------------------------------------------------------- |
| 20 | # https://gerrit.opencord.org/plugins/gitiles/onf-make |
Joey Armstrong | f128de8 | 2023-09-08 17:05:18 -0400 | [diff] [blame] | 21 | # ONF.makefiles.include.version = 1.1 |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 22 | # ----------------------------------------------------------------------- |
| 23 | |
| 24 | ifndef mk-include--onf-make # single-include guard macro |
Joey Armstrong | a689034 | 2023-06-01 17:07:51 -0400 | [diff] [blame] | 25 | |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 26 | $(if $(DEBUG),$(warning ENTER)) |
| 27 | |
Joey Armstrong | a8205c2 | 2023-10-18 13:35:16 -0400 | [diff] [blame] | 28 | ##-------------------## |
| 29 | ##---] GLOBALS [---## |
| 30 | ##-------------------## |
| 31 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 32 | ## ----------------------------------------------------------------------- |
| 33 | ## Define vars based on relative import (normalize symlinks) |
| 34 | ## Usage: include makefiles/onf/include.mk |
Joey Armstrong | a8205c2 | 2023-10-18 13:35:16 -0400 | [diff] [blame] | 35 | ## Overide-by: makefiles/onf-lib/makefiles/include.mk |
| 36 | ## when repo:onf-make is used as a git-submodule |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 37 | ## ----------------------------------------------------------------------- |
| 38 | onf-mk-abs ?= $(abspath $(lastword $(MAKEFILE_LIST))) |
| 39 | onf-mk-top := $(subst /include.mk,$(null),$(onf-mk-abs)) |
Joey Armstrong | a8205c2 | 2023-10-18 13:35:16 -0400 | [diff] [blame] | 40 | onf-mk-tmp := $(onf-mk-top)/tmp |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 41 | ONF_MAKEDIR := $(onf-mk-top) |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 42 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 43 | TOP ?= $(patsubst %/makefiles/include.mk,%,$(onf-mk-abs)) |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 44 | |
Joey Armstrong | a8205c2 | 2023-10-18 13:35:16 -0400 | [diff] [blame] | 45 | ##--------------------## |
| 46 | ##---] INCLUDES [---## |
| 47 | ##--------------------## |
Joey Armstrong | 216b04b | 2023-09-29 16:31:19 -0400 | [diff] [blame] | 48 | include $(ONF_MAKEDIR)/lint/make/warn-undef-vars.mk # target lint-make helper |
| 49 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 50 | include $(ONF_MAKEDIR)/consts.mk |
| 51 | include $(ONF_MAKEDIR)/help/include.mk # render target help |
| 52 | include $(ONF_MAKEDIR)/utils/include.mk # dependency-less helper macros |
| 53 | include $(ONF_MAKEDIR)/etc/include.mk # banner macros |
| 54 | include $(ONF_MAKEDIR)/commands/include.mk # Tools and local installers |
Joey Armstrong | 42f4ce6 | 2023-06-09 12:56:48 -0400 | [diff] [blame] | 55 | |
Joey Armstrong | e6a9991 | 2023-09-15 14:47:51 -0400 | [diff] [blame] | 56 | include $(ONF_MAKEDIR)/virtualenv/include.mk# # python, lint, JJB dependency |
Joey Armstrong | f128de8 | 2023-09-08 17:05:18 -0400 | [diff] [blame] | 57 | # include $(ONF_MAKEDIR)/patches/include.mk# # Patch when python 3.10+ in use |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 58 | include $(ONF_MAKEDIR)/lint/include.mk |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 59 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 60 | include $(ONF_MAKEDIR)/gerrit/include.mk |
| 61 | include $(ONF_MAKEDIR)/git/include.mk |
| 62 | include $(ONF_MAKEDIR)/jjb/include.mk |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 63 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 64 | $(if $(USE-VOLTHA-RELEASE-MK),\ |
| 65 | $(eval include $(ONF_MAKEDIR)/release/include.mk)) |
Joey Armstrong | a689034 | 2023-06-01 17:07:51 -0400 | [diff] [blame] | 66 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 67 | include $(ONF_MAKEDIR)/todo.mk |
| 68 | include $(ONF_MAKEDIR)/help/variables.mk |
Joey Armstrong | d26858f | 2023-07-08 15:52:16 -0400 | [diff] [blame] | 69 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 70 | ##---------------------## |
| 71 | ##---] ON_DEMAND [---## |
| 72 | ##---------------------## |
| 73 | $(if $(USE-ONF-GERRIT-MK),$(eval include $(ONF_MAKEDIR)/gerrit/include.mk)) |
| 74 | $(if $(USE-ONF-DOCKER-MK),$(eval include $(ONF_MAKEDIR)/docker/include.mk)) |
Joey Armstrong | d26858f | 2023-07-08 15:52:16 -0400 | [diff] [blame] | 75 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 76 | ##-------------------## |
| 77 | ##---] TARGETS [---## |
| 78 | ##-------------------## |
| 79 | include $(ONF_MAKEDIR)/targets/include.mk # clean, sterile |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 80 | |
| 81 | $(if $(DEBUG),$(warning LEAVE)) |
| 82 | |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 83 | mk-include--onf-make := true |
| 84 | |
| 85 | endif # mk-include--onf-make |
| 86 | |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 87 | # [EOF] |