blob: 44872b4b30762638bd1c0a19d8aaba154551b265 [file] [log] [blame]
Joey Armstrong0cbee512023-10-18 15:39:24 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 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#
17# SPDX-FileCopyrightText: 2023 Open Networking Foundation (ONF) and the ONF Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
20# https://gerrit.opencord.org/plugins/gitiles/onf-make
21# ONF.makefile.version = 1.0
22# -----------------------------------------------------------------------
23# Setup:
24# 1) Makefile
25# include config.mk
26# include makefiles/include.mk
27# 2) cd makefiles
28# 23 copy makefiles_include_mk.ex into $repo/makefiles/include.mk
29# 4) make create-onf-lib
30# -----------------------------------------------------------------------
31
32$(if $(DEBUG),$(warning ENTER))
33
34## -----------------------------------------------------------------------
35## Define vars based on relative import (normalize symlinks)
36## Usage: include makefiles/onf/include.mk
37## -----------------------------------------------------------------------
38onf-mk-abs ?= $(abspath $(lastword $(MAKEFILE_LIST)))
39onf-mk-top := $(subst makefiles/include.mk,$(null),$(onf-mk-abs))
40
41LEGACY := 1
42ifdef LEGACY
43 # Cleanup patch forthcoming
44 onf-mk-lib := $(onf-mk-top)/makefiles-orig
45else
46 onf-mk-lib := $(onf-mk-top)/makefiles/onf-lib/makefiles
47endif
48
49onf-mk-loc := $(onf-mk-top)/makefiles/local
50TOP ?= $(onf-mk-top)
51
52## ------------------------------------------------------
53## Two distinct vars needed to access library or project
54## ------------------------------------------------------
55ONF_MAKEDIR ?= $(onf-mk-lib)
56MAKEDIR ?= $(onf-mk-loc)
57
58## -----------------------------------------------------------------------
59## Load makefiles in order:
60## 1) Library constants and logic loaded first
61## 2) Parameterize and augment targets from local (repo specific)
62## -----------------------------------------------------------------------
63include $(onf-mk-top)/makefiles/config.mk
64include $(onf-mk-lib)/include.mk
65include $(onf-mk-loc)/include.mk
66
67## -----------------------------------------
68## Submodue init target for new repositories
69## -----------------------------------------
70create-onf-lib : $(onf-mk-lib)
71$(onf-mk-lib):
72 mkdir -p $(dir $@)# makefiles
73 cd $(dir $@) \
74 && git submodule https://github.com/opencord/onf-make.git onf-lib
75
76update-submodules:
77 git submodule foreach git pull
78
79$(if $(DEBUG),$(warning LEAVE))
80
81# [EOF]