16 lines
237 B
Makefile
16 lines
237 B
Makefile
# list all recipes
|
|
default:
|
|
just --list --unsorted
|
|
|
|
# build html
|
|
build:
|
|
cp src/interesting.txt dist && sh bin/build.sh
|
|
|
|
# build and upload
|
|
all:
|
|
just build && just up
|
|
|
|
# upload
|
|
up:
|
|
rsync -zaP dist/* tilde:public_html/interesting/
|