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