]> Cypherpunks.ru repositories - nncp.git/blob - BSDmakefile
12bf97ac0211f22c59428ea0637c3230bd51bd7e
[nncp.git] / BSDmakefile
1 VERSION != cat VERSION
2 GO ?= go
3
4 GO_MOD_EXISTS != $(GO) help mod >/dev/null 2>&1 || echo no
5
6 .if ${GO_MOD_EXISTS} == "no"
7 BUILDMOD ?=
8 GOPATH ?= $(PWD)
9 .else
10 BUILDMOD ?= -mod=vendor
11 GOPATH ?= $(PWD)/gopath
12 .endif
13
14 include common.mk