blob: 7e4278bf947117d4e7a3507ce29a9e24e325bfad [file] [log] [blame]
Joey Armstrong76f861a2024-03-13 16:01:24 -04001# -*- makefile -*-
2## -----------------------------------------------------------------------
Joey Armstrong5b06a132024-03-26 18:24:54 -04003## Intent:
Joey Armstrong76f861a2024-03-13 16:01:24 -04004## -----------------------------------------------------------------------
5
Joey Armstrongcc24b3c2024-03-22 11:12:23 -04006##-------------------##
7##---] GLOBALS [---##
8##-------------------##
9GIT ?= /usr/bin/env git
Joey Armstrong76f861a2024-03-13 16:01:24 -040010common-sh := lf/onf-common/common.sh
11
12all : $(common-sh)
13
14## -----------------------------------------------------------------------
15## Intent: On-demand submodule checkout
16## -----------------------------------------------------------------------
17$(common-sh) :
Joey Armstrongcc24b3c2024-03-22 11:12:23 -040018 $(GIT) submodule update --init --recursive
Joey Armstrong76f861a2024-03-13 16:01:24 -040019
20# [EOF]