commit 0c8ca36

Artur Manuel  ·  2026-07-31 19:07:16 +0000 UTC
parent c0b9eee
makefile: remove redundant makefile in favour of go

Fixes #5
2 files changed,  +3, -18
+0, -15
 1@@ -1,15 +0,0 @@
 2-.POSIX:
 3-
 4-GO ?= go
 5-
 6-all:
 7-	$(GO) build ./cmd/glerc
 8-
 9-clean:
10-	rm glerc
11-
12-lint:
13-	$(GO) fmt ./...
14-	$(GO) vet ./...
15-	$(GO) fix ./...
16-	staticcheck ./...
+3, -3
 1@@ -4,11 +4,11 @@
 2 
 3 A small, werc-inspired and easy to use SSG, written in Go - Write pages in markdown, get them back as HTML files with a nice lil sidebar :D
 4 
 5-## building
 6+## installing
 7 
 8-To build glerc, you need `go >= 1.26.2`.
 9+To install glerc, you need `go >= 1.26.2`.
10 
11-Running `make` in the root of the repository should give you a binary called `./glerc`
12+Running `go install codeberg.org/dani-institute/glerc/cmd/glerc@latest` will install `glerc` to `$HOME/go/bin`.
13 
14 ## usage
15