From 329d8f91da099e599ed60bffc16e9280a9094e59 Mon Sep 17 00:00:00 2001 From: Vitaly Potyarkin Date: Fri, 21 Aug 2020 10:09:56 +0300 Subject: [PATCH] Add Makefile recipe for updating submodules --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index d3a2532..538212b 100644 --- a/Makefile +++ b/Makefile @@ -61,6 +61,12 @@ help: @echo 'Set the RELATIVE variable to 1 to enable relative urls ' @echo ' ' +.PHONY: submodule +submodule: + git submodule init + git submodule update + + html: $(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS)