aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-10-17 21:45:16 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-10-17 21:45:16 +0200
commit60848b9c7227363d311948456198e129a37f80e0 (patch)
tree0cfb2796bec61d77975b1ced68ae376ce8230d23 /Makefile
parenttun: only call .Fd() once (diff)
downloadwireguard-go-60848b9c7227363d311948456198e129a37f80e0.tar.xz
wireguard-go-60848b9c7227363d311948456198e129a37f80e0.zip
Makefile: rename default to all
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8c67d19..cff8a7f 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ BINDIR ?= $(PREFIX)/bin
export GOPATH ?= $(CURDIR)/.gopath
export GO111MODULE := on
-default: generate-version-and-build
+all: generate-version-and-build
ifeq ($(shell go env GOOS)|$(wildcard .git),linux|)
$(error Do not build this for Linux. Instead use the Linux kernel module. See wireguard.com/install/ for more info.)
@@ -39,4 +39,4 @@ install: wireguard-go
clean:
rm -f wireguard-go
-.PHONY: default clean install generate-version-and-build
+.PHONY: all clean install generate-version-and-build