blob: a021c41edb687090c9b4e2387baa1f5602554f9a [file] [log] [blame]
Joey Armstrong65405412022-11-22 10:43:06 -05001# -*- makefile -*-
Joey Armstrong3f575f72023-01-15 23:49:19 -05002# -----------------------------------------------------------------------
Joey Armstrong72ee7202024-03-11 11:51:40 -04003# Copyright 2022-2024 Open Networking Foundation Contributors
Joey Armstrong3f575f72023-01-15 23:49:19 -05004#
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 Armstrong72ee7202024-03-11 11:51:40 -04009# http:#www.apache.org/licenses/LICENSE-2.0
Joey Armstrong3f575f72023-01-15 23:49:19 -050010#
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 Armstrong72ee7202024-03-11 11:51:40 -040017# SPDX-FileCopyrightText: 2022-2024 Open Networking Foundation Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
Joey Armstrong65405412022-11-22 10:43:06 -050020
Joey Armstrong068d6452023-02-01 11:09:18 -050021.PHONY: help clean help test
22.DEFAULT_GOAL := help
Zack Williamsc2140b92018-04-05 09:19:22 -070023
Joey Armstrong3f575f72023-01-15 23:49:19 -050024##-------------------##
25##---] GLOBALS [---##
26##-------------------##
Joey Armstrong3f575f72023-01-15 23:49:19 -050027
Joey Armstrong3f575f72023-01-15 23:49:19 -050028##--------------------##
29##---] INCLUDES [---##
30##--------------------##
Joey Armstrong56fdfec2024-03-01 13:43:36 -050031# include config.mk
32include lf/include.mk
33
Joey Armstrongdd334492023-07-09 17:59:02 -040034ONF_MAKEDIR ?= $(error ONF_MAKEDIR= is required)
Joey Armstrong3f575f72023-01-15 23:49:19 -050035
Joey Armstrong29874122023-09-21 12:34:34 -040036# [TODO]
Joey Armstrong3f575f72023-01-15 23:49:19 -050037# JJB_VERSION ?= 4.1.0
Zack Williamsc2140b92018-04-05 09:19:22 -070038
Joey Armstrong01bbf8d2023-03-05 06:20:14 -050039# -----------------------------------------------------------------------
40# horrible dep: (ie -- .PHONY: $(JOBCONFIG_DIR))
41# o Directory inode always changing due to (time-last-accessed++).
42# o Dependent Targets always re-made due to setale dependency.
43# o Use file inside directory as dep rather than a directory.
44# -----------------------------------------------------------------------
Zack Williamsc2140b92018-04-05 09:19:22 -070045$(JOBCONFIG_DIR):
46 mkdir $@
47
Joey Armstrongdd334492023-07-09 17:59:02 -040048# -----------------------------------------------------------------------
49# Intent: Generate pipeline jobs
50# -----------------------------------------------------------------------
51build : jjb-gen
52
Joey Armstrong01bbf8d2023-03-05 06:20:14 -050053##-------------------##
54##---] TARGETS [---##
55##-------------------##
Joey Armstrongdd334492023-07-09 17:59:02 -040056## Display make help summary late
57include $(ONF_MAKEDIR)/help/trailer.mk
Joey Armstrong3f575f72023-01-15 23:49:19 -050058
Joey Armstrongdd334492023-07-09 17:59:02 -040059# make help not widely in use yet so be explicit
60help ::
Joey Armstrongf2e312c2024-03-01 12:00:05 -050061
Joey Armstrongdd334492023-07-09 17:59:02 -040062 @echo
63 @echo 'Usage: $(MAKE) help ...'
Joey Armstrongf2e312c2024-03-01 12:00:05 -050064
Joey Armstrongdd334492023-07-09 17:59:02 -040065 @echo ' % make clean sterile'
Joey Armstrongf2e312c2024-03-01 12:00:05 -050066 @printf ' %-33.33s %s\n' 'lint' \
67 'Invoke syntax checking targets'
68 @printf ' %-33.33s %s\n' 'build' \
69 'Invoke jenkins-jobs to regenerate pipelines'
Joey Armstrongdd334492023-07-09 17:59:02 -040070 @echo ' % make test'
71 @echo ' % make help # show all available targes'
Joey Armstrong65405412022-11-22 10:43:06 -050072
Joey Armstrongf2e312c2024-03-01 12:00:05 -050073 @echo
74 @echo '[HELP: modifiers]'
75 @printf ' %-33.33s %s\n' '{topic}-help' \
76 'Display extended help for individual makefile targets'
77 @printf ' %-33.33s %s\n' 'help-verbose' \
78 'Display exhaustive help'
79
80## -----------------------------------------------------------------------
81## -----------------------------------------------------------------------
82build-help :
83 @printf ' %-33.33s %s\n' 'build' \
84 'Alias for $(MAKE) jjb-gen'
85 @printf ' %-33.33s %s\n' 'jjb-gen' \
86 'Invoke jenkins-jobs to regenerate pipelines'
87
88## -----------------------------------------------------------------------
89## -----------------------------------------------------------------------
90lint-help :
91 @printf ' %-33.33s %s\n' 'lint' \
92 'Perform syntax checking on configured sources'
93 @printf ' %-33.33s %s\n' 'lint-jjb' \
94 'Invoke jenkins-jobs to syntax check JJB source'
95
96## -----------------------------------------------------------------------
97## -----------------------------------------------------------------------
98help-verbose :: help $(help-verbose)
99
Joey Armstrong65405412022-11-22 10:43:06 -0500100# [EOF]