We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c259349 commit cbdc02eCopy full SHA for cbdc02e
Makefile
@@ -0,0 +1,11 @@
1
+LIBDIR := lib
2
+include $(LIBDIR)/main.mk
3
+
4
+$(LIBDIR)/main.mk:
5
+ifneq (,$(shell grep "path *= *$(LIBDIR)" .gitmodules 2>/dev/null))
6
+ git submodule sync
7
+ git submodule update $(CLONE_ARGS) --init
8
+else
9
+ git clone -q --depth 10 $(CLONE_ARGS) \
10
+ -b main https://github.com/martinthomson/i-d-template $(LIBDIR)
11
+endif
0 commit comments