Skip to content

Commit

Permalink
Remove build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzvonimir committed Apr 2, 2024
1 parent 330b360 commit 6b3db6d
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ endif
.PHONY: \
all \
build \
build-mac \
build-mac-m1 \
build-linux \
deps \
doc \
buf \
Expand All @@ -68,18 +65,6 @@ all: build debug
build: proto
CGO_ENABLED=1 GOOS=$(UNAME) go build -a -tags netgo -ldflags="$(LDFLAGS)" -o "$(TARGET)" .

## Build binary for linux amd64
build-linux: proto
CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -a -tags netgo -ldflags="$(LDFLAGS)" -o "$(TARGET)" .

## Build binary for darwin amd64
build-mac: proto
CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -a -tags netgo -ldflags="$(LDFLAGS)" -o "$(TARGET)" .

## Build binary for darwin arm64
build-mac-m1: proto
CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build -a -tags netgo -ldflags="$(LDFLAGS)" -o "$(TARGET)" .

## Install binary to GOPATH
install: proto
CGO_ENABLED=1 GOOS=$(UNAME) go install -a -tags netgo -ldflags="$(LDFLAGS)"
Expand Down

0 comments on commit 6b3db6d

Please sign in to comment.