AdGuardHome/Makefile

33 lines
1.0 KiB
Makefile
Raw Normal View History

2018-08-30 15:25:33 +01:00
GIT_VERSION := $(shell git describe --abbrev=4 --dirty --always --tags)
NATIVE_GOOS = $(shell unset GOOS; go env GOOS)
NATIVE_GOARCH = $(shell unset GOARCH; go env GOARCH)
2018-11-09 15:19:55 +00:00
GOPATH := $(shell go env GOPATH)
JSFILES = $(shell find client -path client/node_modules -prune -o -type f -name '*.js')
STATIC = build/static/index.html
2018-08-30 15:25:33 +01:00
TARGET=AdGuardHome
2018-08-30 15:25:33 +01:00
.PHONY: all build clean
all: build
build: $(TARGET)
2018-08-30 15:25:33 +01:00
client/node_modules: client/package.json client/package-lock.json
npm --prefix client install
touch client/node_modules
$(STATIC): $(JSFILES) client/node_modules
npm --prefix client run build-prod
2018-08-30 15:25:33 +01:00
$(TARGET): $(STATIC) *.go coredns_plugin/*.go dnsfilter/*.go
2018-11-09 15:19:55 +00:00
GOPATH=$(GOPATH) GOOS=$(NATIVE_GOOS) GOARCH=$(NATIVE_GOARCH) GO111MODULE=off go get -v github.com/gobuffalo/packr/...
GOPATH=$(GOPATH) PATH=$(GOPATH)/bin:$(PATH) packr build -ldflags="-X main.VersionString=$(GIT_VERSION)" -asmflags="-trimpath=$(PWD)" -gcflags="-trimpath=$(PWD)" -o $(TARGET)
2018-08-30 15:25:33 +01:00
clean:
$(MAKE) cleanfast
rm -rf build
rm -rf client/node_modules
cleanfast:
rm -f $(TARGET)