mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
13 lines
119 B
Makefile
13 lines
119 B
Makefile
.POSIX:
|
|
|
|
GO=go
|
|
|
|
all: bloat
|
|
|
|
PHONY:
|
|
|
|
bloat: main.go PHONY
|
|
$(GO) build $(GOFLAGS) -o bloat main.go
|
|
|
|
run: bloat
|
|
./bloat
|