diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-10-17 21:45:16 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-10-17 21:45:16 +0200 |
commit | 60848b9c7227363d311948456198e129a37f80e0 (patch) | |
tree | 0cfb2796bec61d77975b1ced68ae376ce8230d23 /Makefile | |
parent | 2e772194cf7cd7c37d24364a9f9d407dc96a25e8 (diff) |
Makefile: rename default to all
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |