blob: 262c76f87e87800a4bb3ed410b1aa83396b887a9 [file] [log] [blame]
Joey Armstrong76f861a2024-03-13 16:01:24 -04001# -*- makefile -*-
2## -----------------------------------------------------------------------
3## -----------------------------------------------------------------------
4
5common-sh := lf/onf-common/common.sh
6
7all : $(common-sh)
8
9## -----------------------------------------------------------------------
10## Intent: On-demand submodule checkout
11## -----------------------------------------------------------------------
12$(common-sh) :
13 git submodule update --init --recursive
14
15# [EOF]