]> Cypherpunks.ru repositories - gogost.git/blob - common.mk
Simplify 34.10 curve creation from parameters
[gogost.git] / common.mk
1 LDFLAGS = -X cypherpunks.ru/gogost.Version=$(VERSION)
2
3 all: streebog256 streebog512
4
5 streebog256:
6         GOPATH=$(GOPATH) go build -ldflags "$(LDFLAGS)" cypherpunks.ru/gogost/cmd/streebog256
7
8 streebog512:
9         GOPATH=$(GOPATH) go build -ldflags "$(LDFLAGS)" cypherpunks.ru/gogost/cmd/streebog512
10
11 bench:
12         GOPATH=$(GOPATH) go test -benchmem -bench . cypherpunks.ru/gogost/...