From 13091c2a7cab571adac0c1ef5343da76793abe90 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Sun, 18 Sep 2022 10:14:51 -0500 Subject: [PATCH] Add make install target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 057a443..ed2a2ea 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,10 @@ build: go build @echo "You can now execute ./pgweb" +install: + go install + @echo "You can now execute pgweb" + release: LDFLAGS += -X $(PKG)/pkg/command.GitCommit=$(GIT_COMMIT) release: LDFLAGS += -X $(PKG)/pkg/command.BuildTime=$(BUILD_TIME) release: LDFLAGS += -X $(PKG)/pkg/command.GoVersion=$(GO_VERSION)