- commit
- 5c57dc0
- parent
- dc9cf87
- author
- Triple oh
- date
- 2025-09-08 21:49:47 -0400 EDT
1
1 files changed,
+22,
-0
A
Makefile
A
Makefile
+22,
-0
1@@ -0,0 +1,22 @@
2+all: dev
3+
4+build:
5+ @echo build pgit yourself
6+
7+clean:
8+ rm -rf ./public
9+
10+static: build clean
11+ ../pgit/pgit\
12+ --out ./public \
13+ --label pgit \
14+ --desc "staticsitegeneratorforgit" \
15+ --clone-url "https://go.com"\
16+ --home-url "https://shimmery-git-pgit-local.pgs.sh/"\
17+ --theme "dracula"\
18+ --revs main
19+
20+dev: static
21+ rsync -rv --delete ./public/ pgs.sh:/git-pgit-local/
22+
23+.PHONY: static build clean dev