mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-04 20:23:13 +00: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
|