bloat/Makefile

14 lines
109 B
Makefile
Raw Normal View History

2019-12-13 18:08:26 +00:00
.POSIX:
GO=go
all: web
PHONY:
web: main.go PHONY
$(GO) build $(GOFLAGS) -o web main.go
run: web
./web