| # -*- makefile -*- |
| ## ----------------------------------------------------------------------- |
| ## ----------------------------------------------------------------------- |
| |
| ##-------------------## |
| ##---] GLOBALS [---## |
| ##-------------------## |
| GIT ?= /usr/bin/env git |
| common-sh := lf/onf-common/common.sh |
| |
| all : $(common-sh) |
| |
| ## ----------------------------------------------------------------------- |
| ## Intent: On-demand submodule checkout |
| ## ----------------------------------------------------------------------- |
| $(common-sh) : |
| $(GIT) submodule update --init --recursive |
| |
| # [EOF] |