aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ba2ef8076b6d52b4f8d5b01dfc605067e82cf991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.POSIX:

GO=go
#GOFLAGS=-mod=vendor

all: web

PHONY:

web: main.go PHONY
	$(GO) build $(GOFLAGS) -o web main.go

run: web
	./web