48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
.PHONY: build
|
|
|
|
VERSION = $(shell git describe --tags)
|
|
BUILDTIME = $(shell date +%Y.%m.%d)
|
|
|
|
all: build
|
|
./virtigod --version
|
|
|
|
build:
|
|
GO111MODULE=off go build \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
verbose:
|
|
GO111MODULE=off go build -v -x \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
install:
|
|
GO111MODULE=off go install \
|
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
|
|
|
# makes a .deb package
|
|
debian:
|
|
go-deb --auto --repo go.wit.com/lib/daemons/virtigod
|
|
|
|
goimports:
|
|
goimports -w *.go
|
|
|
|
redomod:
|
|
rm -f go.*
|
|
GO111MODULE= go mod init
|
|
GO111MODULE= go mod tidy
|
|
|
|
clean:
|
|
rm -f go.*
|
|
rm -f virtigod
|
|
|
|
# git clone the sources and all the golang dependancies into ~/go/src
|
|
# if you don't have go-clone, you can get it from http://go.wit.com/
|
|
git-clone:
|
|
# go-clone --recursive --go-src --no-work go.wit.com/apps/go-clone
|
|
go-clone --recursive --go-src --no-work go.wit.com/lib/daemons/virtigod
|
|
|
|
start-pihole.wit.com-http:
|
|
curl --silent http://localhost:8080/start?start=pihole.wit.com
|
|
|
|
start-bind.wit.com-http:
|
|
curl --silent http://localhost:8080/start?start=bind.wit.com
|