2018-05-15 02:15:16 +02:00
|
|
|
PREFIX ?= /usr
|
|
|
|
DESTDIR ?=
|
|
|
|
BINDIR ?= $(PREFIX)/bin
|
|
|
|
|
2018-05-20 03:18:47 +02:00
|
|
|
ifeq ($(shell go env GOOS),linux)
|
|
|
|
ifeq ($(wildcard .git),)
|
|
|
|
$(error Do not build this for Linux. Instead use the Linux kernel module. See wireguard.com/install/ for more info.)
|
2018-06-13 16:21:59 +02:00
|
|
|
else
|
|
|
|
$(shell printf 'package main\nconst UseTheKernelModuleInstead = 0xdeadbabe\n' > ireallywantobuildon_linux.go)
|
2018-05-20 03:18:47 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-08-01 14:41:32 +02:00
|
|
|
all: wireguard-go
|
2017-06-28 23:45:45 +02:00
|
|
|
|
2018-05-23 03:17:51 +02:00
|
|
|
export GOPATH := $(CURDIR)/.gopath
|
|
|
|
export PATH := $(PATH):$(CURDIR)/.gopath/bin
|
|
|
|
GO_IMPORT_PATH := git.zx2c4.com/wireguard-go
|
|
|
|
|
2018-05-24 01:52:22 +02:00
|
|
|
version.go:
|
|
|
|
@export GIT_CEILING_DIRECTORIES="$(realpath $(CURDIR)/..)" && \
|
|
|
|
tag="$$(git describe --dirty 2>/dev/null)" && \
|
|
|
|
ver="$$(printf 'package main\nconst WireGuardGoVersion = "%s"\n' "$$tag")" && \
|
|
|
|
[ "$$(cat $@ 2>/dev/null)" != "$$ver" ] && \
|
|
|
|
echo "$$ver" > $@ && \
|
|
|
|
git update-index --assume-unchanged $@ || true
|
|
|
|
|
2018-05-23 03:17:51 +02:00
|
|
|
.gopath/.created:
|
|
|
|
rm -rf .gopath
|
|
|
|
mkdir -p $(dir .gopath/src/$(GO_IMPORT_PATH))
|
|
|
|
ln -s ../../.. .gopath/src/$(GO_IMPORT_PATH)
|
|
|
|
touch $@
|
|
|
|
|
2018-05-23 17:30:35 +02:00
|
|
|
vendor/.created: Gopkg.toml Gopkg.lock | .gopath/.created
|
2018-05-23 03:17:51 +02:00
|
|
|
command -v dep >/dev/null || go get -v github.com/golang/dep/cmd/dep
|
Makefile: export PWD for OpenBSD's ksh(1)
Interestingly, ksh(1) on OpenBSD does not export PWD by default, and it
also has a notion of the "logical cwd" vs the "physical cwd", with the
latter being passed to chdir, but the former being stored in the
non-exported PWD and displayed to the user. This means that if you `cd`
into a directory that's comprised of symlinks, exec'd processes will see
the physical path. Observe:
# ksh
# mkdir a
# ln -s a b
# cd b
# pwd
/root/b
# ksh -c pwd
/root/a
The fact of separating physical and logical paths is not too uncommon
for shells (bash does it too), but not exporting PWD is very odd.
Since this is common behavior for many shells, libraries that return the
working directory will do something strange: they `stat(".")` and then
`stat(getenv("PWD"))`, and if these point to the same inode, they roll
with the value of `getenv("PWD")`, or otherwise fallback to asking the
kernel for the cwd.
Since PWD was not exported by ksh(1), Go's dep utility did not understand
it was operating inside of our faked GOPATH and became upset.
This patch works around the whole situation by simply exporting PWD
before executing dep.
2018-06-02 16:25:19 +02:00
|
|
|
export PWD; cd .gopath/src/$(GO_IMPORT_PATH) && dep ensure -vendor-only -v
|
2018-05-23 03:17:51 +02:00
|
|
|
touch $@
|
|
|
|
|
2018-05-24 01:52:22 +02:00
|
|
|
wireguard-go: $(wildcard *.go) $(wildcard */*.go) .gopath/.created vendor/.created version.go
|
2018-05-24 03:13:46 +02:00
|
|
|
go build -v $(GO_IMPORT_PATH)
|
2018-05-15 02:15:16 +02:00
|
|
|
|
|
|
|
install: wireguard-go
|
2018-05-23 03:17:51 +02:00
|
|
|
@install -v -d "$(DESTDIR)$(BINDIR)" && install -v -m 0755 wireguard-go "$(DESTDIR)$(BINDIR)/wireguard-go"
|
2017-06-28 23:45:45 +02:00
|
|
|
|
|
|
|
clean:
|
2017-08-01 14:41:32 +02:00
|
|
|
rm -f wireguard-go
|
2017-06-28 23:45:45 +02:00
|
|
|
|
2018-05-23 17:30:35 +02:00
|
|
|
update-dep: | .gopath/.created
|
2018-05-23 03:17:51 +02:00
|
|
|
command -v dep >/dev/null || go get -v github.com/golang/dep/cmd/dep
|
|
|
|
cd .gopath/src/$(GO_IMPORT_PATH) && dep ensure -update -v
|
|
|
|
|
2018-05-24 01:52:22 +02:00
|
|
|
.PHONY: clean install update-dep version.go
|