mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-03-30 12:05:38 +00:00
If $GOROOT is defined, Makefile should respect the value, fix #8
This commit is contained in:
22
Makefile
22
Makefile
@@ -1,13 +1,21 @@
|
||||
.PHONY: all clean install uninstall deps
|
||||
|
||||
GOBUILD=go build
|
||||
GOGET=go get -d -v
|
||||
GOGET_UPDATE=go get -d -u -v
|
||||
PREFIX=/usr/local
|
||||
ifeq ($(shell uname),Darwin)
|
||||
CONFDIR=/usr/local/etc/dns-over-https
|
||||
PREFIX = /usr/local
|
||||
|
||||
ifeq ($(GOROOT),)
|
||||
GOBUILD = go build
|
||||
GOGET = go get -d -v
|
||||
GOGET_UPDATE = go get -d -u -v
|
||||
else
|
||||
CONFDIR=/etc/dns-over-https
|
||||
GOBUILD = $(GOROOT)/bin/go build
|
||||
GOGET = $(GOROOT)/bin/go get -d -v
|
||||
GOGET_UPDATE = $(GOROOT)/bin/go get -d -u -v
|
||||
endif
|
||||
|
||||
ifeq ($(shell uname),Darwin)
|
||||
CONFDIR = /usr/local/etc/dns-over-https
|
||||
else
|
||||
CONFDIR = /etc/dns-over-https
|
||||
endif
|
||||
|
||||
all: doh-client/doh-client doh-server/doh-server
|
||||
|
||||
Reference in New Issue
Block a user