mirror of
https://github.com/zaphar/jeremy.marzhillstudios.com.git
synced 2025-07-21 19:29:48 -04:00
16 lines
243 B
Makefile
16 lines
243 B
Makefile
build: content/.built
|
|
|
|
all: build deploy
|
|
|
|
content/.built:
|
|
zola build -o public/
|
|
touch content/.built
|
|
|
|
deploy: build
|
|
cd public
|
|
gsutil -m rsync -d -r public gs://jeremy.marzhillstudios.com/
|
|
|
|
clean:
|
|
rm -f content/.built
|
|
rm -rf generated/*
|