From 6734c4408ffb67841115ca17d14d879043a3343e Mon Sep 17 00:00:00 2001 From: Gabriel Arakaki Giovanini Date: Sat, 10 Dec 2022 23:36:39 +0100 Subject: feat: Initial set up for static single sign on This is a simple project to have a static site behind single sign on. --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bc57920 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +PREFIX?=/usr/local +BINDIR?=$(PREFIX)/bin +BIN=s4o + +all: build + +install: build + install -m755 ./bin/$(BIN) $(BINDIR)/$(BIN) + +build: + go build -v -o ./bin/$(BIN) ./cmd/s4o/main.go -- cgit v1.2.3