Bryan Joshua Pedini
a75ca5392a
make is good, make is life, use make now everything works with a single make (good for devops ci/cd too)
13 lines
114 B
Makefile
13 lines
114 B
Makefile
#!make
|
|
|
|
default: build
|
|
|
|
prep:
|
|
git submodule update --init --recursive
|
|
|
|
build: prep
|
|
hugo
|
|
|
|
run: prep
|
|
hugo server
|