shroomgit

generate static pages of git repos
git clone https://git.davidvoz.net/shroomgit.git
index
logs
tree

Makefile
1.PHONY: all shindex shgit clean
2
3all: shindex shgit
4
5shindex:
6 @mkdir -p bin
7 go build -o bin/shindex ./shindex
8
9shgit:
10 @mkdir -p bin
11 go build -o bin/shgit ./shgit
12
13clean:
14 rm -rf bin