]> git.ipfire.org Git - thirdparty/wireguard-go.git/commitdiff
Makefile: rename default to all
authorJason A. Donenfeld <Jason@zx2c4.com>
Wed, 17 Oct 2018 19:45:16 +0000 (21:45 +0200)
committerJason A. Donenfeld <Jason@zx2c4.com>
Wed, 17 Oct 2018 19:45:16 +0000 (21:45 +0200)
Makefile

index 8c67d19a778b8b3d4f6a52396f83656722efbdbc..cff8a7fdefaa43d6359b645f542f6c488e9a0688 100644 (file)
--- 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