From a33b15c6c943f248f07e7c930f2a4c2ac303e9b3 Mon Sep 17 00:00:00 2001 From: Gabriel Adrian Samfira Date: Tue, 13 Jun 2023 23:50:33 +0300 Subject: [PATCH] Remove install target Signed-off-by: Gabriel Adrian Samfira --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index be922aae..fbd2dbf2 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ VERSION ?= $(shell git describe --tags --match='v[0-9]*' --dirty --always) GO ?= go -default: install +default: build .PHONY : build-static test install-lint-deps lint go-test fmt fmtcheck verify-vendor verify build-static: @@ -26,10 +26,6 @@ build: @$(GO) build -ldflags "-s -w -X github.com/cloudbase/garm/cmd/garm-cli/cmd.Version=${VERSION}" -tags osusergo,netgo,sqlite_omit_load_extension -o bin/garm-cli ./cmd/garm-cli @echo Binaries are available in $(PWD)/bin -install: - @$(GO) install -tags osusergo,netgo,sqlite_omit_load_extension ./... - @echo Binaries available in ${GOPATH} - test: verify go-test install-lint-deps: