blob: 1be78b2f34799b10d36d165e99516617823eeab9 [file] [log] [blame]
Joey Armstrong76f861a2024-03-13 16:01:24 -04001# -*- makefile -*-
2## -----------------------------------------------------------------------
3## -----------------------------------------------------------------------
4
Joey Armstrongcc24b3c2024-03-22 11:12:23 -04005##-------------------##
6##---] GLOBALS [---##
7##-------------------##
8GIT ?= /usr/bin/env git
Joey Armstrong76f861a2024-03-13 16:01:24 -04009common-sh := lf/onf-common/common.sh
10
11all : $(common-sh)
12
13## -----------------------------------------------------------------------
14## Intent: On-demand submodule checkout
15## -----------------------------------------------------------------------
16$(common-sh) :
Joey Armstrongcc24b3c2024-03-22 11:12:23 -040017 $(GIT) submodule update --init --recursive
Joey Armstrong76f861a2024-03-13 16:01:24 -040018
19# [EOF]