Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | 1e07f88 | 2023-07-08 19:28:49 -0400 | [diff] [blame] | 3 | # Copyright 2022-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 |
| 15 | # limitations under the License. |
| 16 | # ----------------------------------------------------------------------- |
| 17 | |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 18 | .PHONY: help clean help test |
| 19 | .DEFAULT_GOAL := help |
| 20 | |
Joey Armstrong | a2db6cd | 2023-11-30 12:16:18 -0500 | [diff] [blame^] | 21 | ##---------------------## |
| 22 | ##---] BOOTSTRAP [---## |
| 23 | ##---------------------## |
| 24 | onf-mk-abs ?= $(abspath $(lastword $(MAKEFILE_LIST))) |
| 25 | onf-mk-top := $(dir $(onf-mk-abs)) |
| 26 | onf-mk-top := $(patsubst %/,%,$(onf-mk-top)) |
| 27 | |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 28 | ##-------------------## |
| 29 | ##---] GLOBALS [---## |
| 30 | ##-------------------## |
Joey Armstrong | f128de8 | 2023-09-08 17:05:18 -0400 | [diff] [blame] | 31 | TOP ?= . |
Joey Armstrong | 43997db | 2023-06-04 10:08:58 -0400 | [diff] [blame] | 32 | |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 33 | ##--------------------## |
| 34 | ##---] INCLUDES [---## |
| 35 | ##--------------------## |
Joey Armstrong | a2db6cd | 2023-11-30 12:16:18 -0500 | [diff] [blame^] | 36 | include $(onf-mk-top)/makefiles/include.mk |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 37 | |
Joey Armstrong | 7f590b9 | 2023-10-18 12:07:51 -0400 | [diff] [blame] | 38 | ## ----------------------------------------------------------------------- |
| 39 | ## Intent: Helper target for interactive README.md viewing |
| 40 | ## Note: This target has limited use for repo:onf-make and this directory |
| 41 | ## Todo: Add makefiles/[lint/]md/include.mk and generalize logic |
| 42 | ## ----------------------------------------------------------------------- |
| 43 | view-docs-src := README.md $(wildcard docs/*.md) |
| 44 | view-docs-dep := $(addprefix view-dep^,$(view-docs-src)) |
| 45 | |
| 46 | .PHONY: view $(view-docs-dep) |
| 47 | view :: $(view-docs-dep) |
| 48 | |
| 49 | $(view-docs-dep): # view-dep^README.md => README.md |
| 50 | -pandoc $(lastword $(subst ^,$(space),$@)) | lynx -stdin |
| 51 | |
| 52 | help :: |
| 53 | @echo |
| 54 | @printf ' %-25.25s %s\n' 'view'\ |
| 55 | 'Rendering *.md docs for interactive viewing' |
| 56 | |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 57 | # [EOF] |