Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
200 B
Makefile

REPO=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
all: srndv2
srndv2:
GOPATH=$(REPO) go build -v -tags libsodium
pure:
GOPATH=$(REPO) go build -v
clean:
GOPATH=$(REPO) go clean -v