blob: 4a7ca9fddbd01cee940f8d52a45f324025d16fc2 [file] [log] [blame]
Joey Armstrong0205d332023-04-11 17:29:23 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrongdc04c932024-04-01 12:14:21 -04003# Copyright 2022-2024 Open Networking Foundation Contributors
Joey Armstrong0205d332023-04-11 17:29:23 -04004#
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#
Joey Armstrongdc04c932024-04-01 12:14:21 -04009# http:#www.apache.org/licenses/LICENSE-2.0
Joey Armstrong0205d332023-04-11 17:29:23 -040010#
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 Armstrongdc04c932024-04-01 12:14:21 -040017# SPDX-FileCopyrightText: 2022-2024 Open Networking Foundation Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
20# Intent:
21# -----------------------------------------------------------------------
Joey Armstrong0205d332023-04-11 17:29:23 -040022
Joey Armstrong0205d332023-04-11 17:29:23 -040023.PHONY: help clean help test
24.DEFAULT_GOAL := help
25
Joey Armstronga2db6cd2023-11-30 12:16:18 -050026##---------------------##
27##---] BOOTSTRAP [---##
28##---------------------##
29onf-mk-abs ?= $(abspath $(lastword $(MAKEFILE_LIST)))
30onf-mk-top := $(dir $(onf-mk-abs))
31onf-mk-top := $(patsubst %/,%,$(onf-mk-top))
32
Joey Armstrong78fca2d2024-05-01 16:51:58 -040033onf-mk-dir := $(onf-mk-top)/makefiles
34
Joey Armstrong0205d332023-04-11 17:29:23 -040035##-------------------##
36##---] GLOBALS [---##
37##-------------------##
Joey Armstrongf128de82023-09-08 17:05:18 -040038TOP ?= .
Joey Armstrong43997db2023-06-04 10:08:58 -040039
Joey Armstrong0205d332023-04-11 17:29:23 -040040##--------------------##
41##---] INCLUDES [---##
42##--------------------##
Joey Armstrongccab2cf2024-04-06 18:00:59 -040043include config.mk
Joey Armstrong78fca2d2024-05-01 16:51:58 -040044include $(onf-mk-dir)/include.mk
Joey Armstrong0205d332023-04-11 17:29:23 -040045
Joey Armstrong7f590b92023-10-18 12:07:51 -040046## -----------------------------------------------------------------------
47## Intent: Helper target for interactive README.md viewing
48## Note: This target has limited use for repo:onf-make and this directory
49## Todo: Add makefiles/[lint/]md/include.mk and generalize logic
50## -----------------------------------------------------------------------
51view-docs-src := README.md $(wildcard docs/*.md)
52view-docs-dep := $(addprefix view-dep^,$(view-docs-src))
53
54.PHONY: view $(view-docs-dep)
55view :: $(view-docs-dep)
56
57$(view-docs-dep): # view-dep^README.md => README.md
58 -pandoc $(lastword $(subst ^,$(space),$@)) | lynx -stdin
59
60help ::
61 @echo
62 @printf ' %-25.25s %s\n' 'view'\
63 'Rendering *.md docs for interactive viewing'
64
Joey Armstrongf22de9d2024-04-26 11:37:52 -040065
Joey Armstrong0205d332023-04-11 17:29:23 -040066# [EOF]