fblook/Makefile

8 lines
96 B
Makefile

.PHONY: clean build
build:
GOOS=linux go build -o fblook .
clean:
rm -rf fblook && go clean