git

My personal website source code
Log | Files | Refs | Submodules | README | LICENSE

commit 41566ca1ca4ef3cc360502fbfd212103238813a8
parent 2bb9f75e523e0043abaab75c60c9350645d5e175
Author: Luís Ferreira <contact@lsferreira.net>
Date:   Mon,  9 Aug 2021 21:09:30 +0100

makefile: add build and serve targets

Signed-off-by: Luís Ferreira <contact@lsferreira.net>

Diffstat:
AMakefile | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,13 @@ +build: build-static build-hugo +serve: build-static serve-hugo + +build-static: + git submodule update --init --recursive + ./static/generate.sh + +build-hugo: + hugo + +serve-hugo: + hugo server +