Joey Armstrong | 76f861a | 2024-03-13 16:01:24 -0400 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | ## ----------------------------------------------------------------------- |
| 3 | ## ----------------------------------------------------------------------- |
| 4 | |
Joey Armstrong | cc24b3c | 2024-03-22 11:12:23 -0400 | [diff] [blame^] | 5 | ##-------------------## |
| 6 | ##---] GLOBALS [---## |
| 7 | ##-------------------## |
| 8 | GIT ?= /usr/bin/env git |
Joey Armstrong | 76f861a | 2024-03-13 16:01:24 -0400 | [diff] [blame] | 9 | common-sh := lf/onf-common/common.sh |
| 10 | |
| 11 | all : $(common-sh) |
| 12 | |
| 13 | ## ----------------------------------------------------------------------- |
| 14 | ## Intent: On-demand submodule checkout |
| 15 | ## ----------------------------------------------------------------------- |
| 16 | $(common-sh) : |
Joey Armstrong | cc24b3c | 2024-03-22 11:12:23 -0400 | [diff] [blame^] | 17 | $(GIT) submodule update --init --recursive |
Joey Armstrong | 76f861a | 2024-03-13 16:01:24 -0400 | [diff] [blame] | 18 | |
| 19 | # [EOF] |