added prep to makefile

make is good, make is life, use make
now everything works with a single make (good for devops ci/cd too)
This commit is contained in:
Bryan Joshua Pedini 2024-04-18 08:07:32 +02:00
parent 01b3ef8d5c
commit a75ca5392a
1 changed files with 5 additions and 2 deletions

View File

@ -2,8 +2,11 @@
default: build
build:
prep:
git submodule update --init --recursive
build: prep
hugo
run:
run: prep
hugo server