pedini.dev/makefile
Bryan Joshua Pedini a75ca5392a 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)
2024-04-18 08:07:32 +02:00

13 lines
114 B
Makefile

#!make
default: build
prep:
git submodule update --init --recursive
build: prep
hugo
run: prep
hugo server