pagr

A 'static site generator', built using dati.
Log | Files | Refs | Atom

commit 4af40eedaa6b772dd39ac7b55764a1237e216360
parent 41a0db4e3d0f4c424e4190402b261ec6daf25cda
Author: gearsix <gearsix@tuta.io>
Date:   Wed, 14 Jul 2021 17:48:02 +0100

added simple Makefile

Diffstat:
AMakefile | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,7 @@ +OUT=./pagr +SRC=pagr.go config.go content.go template.go + +all: + go clean + go build -o ${OUT} ${SRC} + go test -v