Compare commits

..

No commits in common. "e1ced3f76d2b86c1d438371bc71439135fafbc3a" and "e4eca321f6d1b883a8a2402753a0a47af1c51f4b" have entirely different histories.

11 changed files with 0 additions and 39 deletions

Binary file not shown.

BIN
bin/gopass-darwin-amd64-v1.2.1 Executable file

Binary file not shown.

Binary file not shown.

BIN
bin/gopass-linux-386-v1.2.1 Executable file

Binary file not shown.

Binary file not shown.

BIN
bin/gopass-linux-amd64-v1.2.1 Executable file

Binary file not shown.

Binary file not shown.

BIN
bin/gopass-windows-386-v1.2.1 Executable file

Binary file not shown.

Binary file not shown.

BIN
bin/gopass-windows-amd64-v1.2.1 Executable file

Binary file not shown.

View File

@ -1,39 +0,0 @@
# The current version number of the program
VERSION := 1.2.2
# List of OS and architecture combinations to build
BUILD_OS_ARCH := \
darwin/amd64 \
linux/386 \
linux/amd64 \
windows/386 \
windows/amd64
# Build all targets
all: $(BUILD_OS_ARCH)
# Build targets in the form of `OS/ARCH`
darwin/amd64:
GOOS=darwin \
GOARCH=amd64 \
go build -ldflags="-s -w" -o "gopass-darwin-amd64-$(VERSION)" main.go
linux/386:
GOOS=linux \
GOARCH=386 \
go build -ldflags="-s -w" -o "gopass-linux-386-$(VERSION)" main.go
linux/amd64:
GOOS=linux \
GOARCH=amd64 \
go build -ldflags="-s -w" -o "gopass-linux-amd64-$(VERSION)" main.go
windows/386:
GOOS=windows \
GOARCH=386 \
go build -ldflags="-s -w" -o "gopass-windows-386-$(VERSION)" main.go
windows/amd64:
GOOS=windows \
GOARCH=amd64 \
go build -ldflags="-s -w" -o "gopass-windows-amd64-$(VERSION)" main.go