diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 21 |
1 files changed, 17 insertions, 4 deletions
@@ -1,8 +1,13 @@ +.PHONY: build + VERSION = $(shell git describe --tags) all: - @echo "make run # will build and run the daemon here" + @echo "make build # build" + @echo "make clean # clean build files" + @echo "make run # build and run on port 2233" @echo "make debian # will build a debian package" + @echo "" @echo "make restart # restart the daemon" @echo "make enable # enable daemon on boot" @echo "make log # watch the daemon log" @@ -18,10 +23,18 @@ restart: systemctl stop gowebd.service systemctl start gowebd.service -run: - git pull +start: + systemctl start gowebd.service + +stop: + systemctl stop gowebd.service + +build: echo "build it!" - GO111MODULE=off go build -v -x -ldflags "-X main.Version=${VERSION} -X gui.GUIVERSION=${VERSION}" + # 2024/11/06 14:41:29 path = /home/jcarr/go/src/go.wit.com/apps/gowebd cmd = go build -v -x -ldflags -X main.VERSION=0.22.2-3-g28e0f09-dirty -ldflags -X main.GUIVERSION=0.22.2-3-g28e0f09-dirty + GO111MODULE=off go build -v -x -ldflags "-X main.VERSION=${VERSION} -X gui.GUIVERSION=${VERSION}" + +run: build ./gowebd --port 2233 # setcap 'cap_net_bind_service=+ep' gowebd # allow the binary to open ports below 1024 |
