mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
15 lines
130 B
Makefile
15 lines
130 B
Makefile
.POSIX:
|
|
|
|
GO=go
|
|
#GOFLAGS=-mod=vendor
|
|
|
|
all: web
|
|
|
|
PHONY:
|
|
|
|
web: main.go PHONY
|
|
$(GO) build $(GOFLAGS) -o web main.go
|
|
|
|
run: web
|
|
./web
|