From 31214d16ed41c7b83d6305df0285dadd808206a5 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 3 May 2022 22:01:19 -0700 Subject: [PATCH] Add task to initialize repo --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 2f77fbc2b..b0fe50262 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,8 @@ +# Init initializes the repo for development. +init: + git submodule update --init --recursive +.PHONY: init + # glad updates the GLAD loader. To use this, place the generated glad.zip # in this directory next to the Makefile, remove vendor/glad and run this target. #