Makefile
1all: dev
2
3build:
4 @echo build pgit yourself
5
6clean:
7 rm -rf ./public
8
9static: build clean
10 ../pgit/pgit\
11 --out ./public \
12 --label pgit \
13 --desc "staticsitegeneratorforgit" \
14 --clone-url "https://go.com"\
15 --home-url "https://shimmery-git-pgit-local.pgs.sh/"\
16 --theme "dracula"\
17 --revs main
18
19dev: static
20 rsync -rv --delete ./public/ pgs.sh:/git-pgit-local/
21
22.PHONY: static build clean dev