Joey Armstrong | 6540541 | 2022-11-22 10:43:06 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 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 | 6540541 | 2022-11-22 10:43:06 -0500 | [diff] [blame] | 17 | |
Joey Armstrong | 068d645 | 2023-02-01 11:09:18 -0500 | [diff] [blame] | 18 | .PHONY: help clean help test |
| 19 | .DEFAULT_GOAL := help |
Zack Williams | c2140b9 | 2018-04-05 09:19:22 -0700 | [diff] [blame] | 20 | |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 21 | ##-------------------## |
| 22 | ##---] GLOBALS [---## |
| 23 | ##-------------------## |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 24 | |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 25 | ##--------------------## |
| 26 | ##---] INCLUDES [---## |
| 27 | ##--------------------## |
Joey Armstrong | 980e37f | 2023-02-28 18:57:41 -0500 | [diff] [blame] | 28 | include config.mk |
Joey Armstrong | dd33449 | 2023-07-09 17:59:02 -0400 | [diff] [blame] | 29 | include makefiles/include.mk |
| 30 | ONF_MAKEDIR ?= $(error ONF_MAKEDIR= is required) |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 31 | |
Joey Armstrong | dd33449 | 2023-07-09 17:59:02 -0400 | [diff] [blame] | 32 | # VENV_DIR ?= venv-jjb |
Joey Armstrong | 0895a88 | 2023-02-06 14:50:39 -0500 | [diff] [blame] | 33 | JJB_VERSION ?= 2.8.0 |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 34 | # JJB_VERSION ?= 4.1.0 |
Zack Williams | c2140b9 | 2018-04-05 09:19:22 -0700 | [diff] [blame] | 35 | JOBCONFIG_DIR ?= job-configs |
| 36 | |
Joey Armstrong | 01bbf8d | 2023-03-05 06:20:14 -0500 | [diff] [blame] | 37 | # ----------------------------------------------------------------------- |
| 38 | # horrible dep: (ie -- .PHONY: $(JOBCONFIG_DIR)) |
| 39 | # o Directory inode always changing due to (time-last-accessed++). |
| 40 | # o Dependent Targets always re-made due to setale dependency. |
| 41 | # o Use file inside directory as dep rather than a directory. |
| 42 | # ----------------------------------------------------------------------- |
Zack Williams | c2140b9 | 2018-04-05 09:19:22 -0700 | [diff] [blame] | 43 | $(JOBCONFIG_DIR): |
| 44 | mkdir $@ |
| 45 | |
Joey Armstrong | dd33449 | 2023-07-09 17:59:02 -0400 | [diff] [blame] | 46 | # ----------------------------------------------------------------------- |
| 47 | # Intent: Generate pipeline jobs |
| 48 | # ----------------------------------------------------------------------- |
| 49 | build : jjb-gen |
| 50 | |
Joey Armstrong | 01bbf8d | 2023-03-05 06:20:14 -0500 | [diff] [blame] | 51 | ##-------------------## |
| 52 | ##---] TARGETS [---## |
| 53 | ##-------------------## |
Joey Armstrong | dd33449 | 2023-07-09 17:59:02 -0400 | [diff] [blame] | 54 | ## Display make help summary late |
| 55 | include $(ONF_MAKEDIR)/help/trailer.mk |
Joey Armstrong | 3f575f7 | 2023-01-15 23:49:19 -0500 | [diff] [blame] | 56 | |
Joey Armstrong | dd33449 | 2023-07-09 17:59:02 -0400 | [diff] [blame] | 57 | # make help not widely in use yet so be explicit |
| 58 | help :: |
| 59 | @echo |
| 60 | @echo 'Usage: $(MAKE) help ...' |
| 61 | @echo ' % make clean sterile' |
| 62 | @echo ' % make lint lint-jjb' |
Joey Armstrong | cb89660 | 2023-07-21 16:38:42 -0400 | [diff] [blame] | 63 | @echo ' % make build # jjb-gen' |
Joey Armstrong | dd33449 | 2023-07-09 17:59:02 -0400 | [diff] [blame] | 64 | @echo ' % make test' |
| 65 | @echo ' % make help # show all available targes' |
Joey Armstrong | 6540541 | 2022-11-22 10:43:06 -0500 | [diff] [blame] | 66 | |
| 67 | # [EOF] |