blob: 7e4278bf947117d4e7a3507ce29a9e24e325bfad [file] [log] [blame]
# -*- makefile -*-
## -----------------------------------------------------------------------
## Intent:
## -----------------------------------------------------------------------
##-------------------##
##---] 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]