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