Add Makefile recipe for updating submodules

This commit is contained in:
Vitaly Potyarkin 2020-08-21 10:09:56 +03:00
commit 329d8f91da

View file

@ -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)