mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 02:18:28 -07:00
37 lines
1.7 KiB
Makefile
37 lines
1.7 KiB
Makefile
GIT_VERSION := $(shell git describe --abbrev=4 --dirty --always --tags)
|
|
GOPATH := $(shell go env GOPATH)
|
|
NATIVE_GOOS = $(shell unset GOOS; go env GOOS)
|
|
NATIVE_GOARCH = $(shell unset GOARCH; go env GOARCH)
|
|
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
|
|
mkfile_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
|
|
STATIC := build/static/bundle.css build/static/bundle.js build/static/index.html
|
|
|
|
.PHONY: all build clean
|
|
all: build
|
|
|
|
build: AdguardDNS coredns
|
|
|
|
$(STATIC):
|
|
npm --prefix client install
|
|
npm --prefix client run build-prod
|
|
|
|
AdguardDNS: $(STATIC) *.go
|
|
echo mkfile_dir = $(mkfile_dir)
|
|
go get -v -d .
|
|
GOOS=$(NATIVE_GOOS) GOARCH=$(NATIVE_GOARCH) go get -v github.com/gobuffalo/packr/...
|
|
PATH=$(GOPATH)/bin:$(PATH) packr build -ldflags="-X main.VersionString=$(GIT_VERSION)" -o AdguardDNS
|
|
|
|
coredns: coredns_plugin/*.go dnsfilter/*.go
|
|
echo mkfile_dir = $(mkfile_dir)
|
|
go get -v -d github.com/coredns/coredns
|
|
cd $(GOPATH)/src/github.com/prometheus/client_golang && git checkout -q v0.8.0
|
|
cd $(GOPATH)/src/github.com/coredns/coredns && perl -p -i.bak -e 's/^(trace|route53|federation|kubernetes|etcd):.*//' plugin.cfg
|
|
cd $(GOPATH)/src/github.com/coredns/coredns && grep -q '^dnsfilter:' plugin.cfg || perl -p -i.bak -e 's|^log:log|log:log\ndnsfilter:github.com/AdguardTeam/AdguardDNS/coredns_plugin|' plugin.cfg
|
|
grep '^dnsfilter:' $(GOPATH)/src/github.com/coredns/coredns/plugin.cfg ## used to check that plugin.cfg was successfully edited by sed
|
|
cd $(GOPATH)/src/github.com/coredns/coredns && GOOS=$(NATIVE_GOOS) GOARCH=$(NATIVE_GOARCH) go generate
|
|
cd $(GOPATH)/src/github.com/coredns/coredns && go get -v -d .
|
|
cd $(GOPATH)/src/github.com/coredns/coredns && go build -o $(mkfile_dir)/coredns
|
|
|
|
clean:
|
|
rm -vf coredns AdguardDNS
|