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