mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
14 lines
109 B
Makefile
14 lines
109 B
Makefile
.POSIX:
|
|
|
|
GO=go
|
|
|
|
all: web
|
|
|
|
PHONY:
|
|
|
|
web: main.go PHONY
|
|
$(GO) build $(GOFLAGS) -o web main.go
|
|
|
|
run: web
|
|
./web
|