Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
| 3 | # Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF 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 | # |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 17 | # SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 18 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ----------------------------------------------------------------------- |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 20 | # https://gerrit.opencord.org/plugins/gitiles/onf-make |
| 21 | # ONF.makefile.version = 1.0 |
| 22 | # ----------------------------------------------------------------------- |
| 23 | |
| 24 | ifndef mk-include--onf-make # single-include guard macro |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 25 | |
| 26 | $(if $(DEBUG),$(warning ENTER)) |
| 27 | |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 28 | ## ----------------------------------------------------------------------- |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 29 | ## Define vars based on relative import (normalize symlinks) |
| 30 | ## Usage: include makefiles/onf/include.mk |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 31 | ## ----------------------------------------------------------------------- |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 32 | onf-mk-abs ?= $(abspath $(lastword $(MAKEFILE_LIST))) |
| 33 | onf-mk-top := $(subst /include.mk,$(null),$(onf-mk-abs)) |
| 34 | ONF_MAKEDIR := $(onf-mk-top) |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 35 | |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 36 | TOP ?= $(patsubst %/makefiles/include.mk,%,$(onf-mk-abs)) |
| 37 | |
| 38 | include $(ONF_MAKEDIR)/consts.mk |
| 39 | include $(ONF_MAKEDIR)/help/include.mk # render target help |
| 40 | include $(ONF_MAKEDIR)/utils/include.mk # dependency-less helper macros |
| 41 | include $(ONF_MAKEDIR)/etc/include.mk # banner macros |
| 42 | include $(ONF_MAKEDIR)/commands/include.mk # Tools and local installers |
| 43 | |
| 44 | include $(ONF_MAKEDIR)/virtualenv.mk# # lint-{jjb,python} depends on venv |
| 45 | include $(ONF_MAKEDIR)/lint/include.mk |
| 46 | |
| 47 | include $(ONF_MAKEDIR)/gerrit/include.mk |
| 48 | include $(ONF_MAKEDIR)/git/include.mk |
| 49 | include $(ONF_MAKEDIR)/jjb/include.mk |
| 50 | |
| 51 | # include $(ONF_MAKEDIR)/release/include.mk |
| 52 | |
| 53 | include $(ONF_MAKEDIR)/todo.mk |
| 54 | include $(ONF_MAKEDIR)/help/variables.mk |
| 55 | |
| 56 | ##---------------------## |
| 57 | ##---] ON_DEMAND [---## |
| 58 | ##---------------------## |
| 59 | $(if $(USE-ONF-GERRIT-MK),$(eval include $(ONF_MAKEDIR)/gerrit/include.mk)) |
| 60 | $(if $(USE-ONF-DOCKER-MK),$(eval include $(ONF_MAKEDIR)/docker/include.mk)) |
| 61 | |
| 62 | ##-------------------## |
| 63 | ##---] TARGETS [---## |
| 64 | ##-------------------## |
| 65 | include $(ONF_MAKEDIR)/targets/include.mk # clean, sterile, tox |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 66 | |
| 67 | $(if $(DEBUG),$(warning LEAVE)) |
| 68 | |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 69 | mk-include--onf-make := true |
| 70 | |
| 71 | endif # mk-include--onf-make |
| 72 | |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 73 | # [EOF] |