# Fenc Makefile
|
|
|
|
default:
|
|
$(info build)
|
|
$(info clean)
|
|
|
|
build:
|
|
GOOS=linux GOARCH=amd64 go build -o fenc-linux fenc.go
|
|
GOOS=darwin GOARCH=amd64 go build -o fenc-darwin fenc.go
|
|
GOOS=windows GOARCH=amd64 go build -o fenc-windows.exe fenc.go
|
|
|
|
clean:
|
|
rm fenc-linux fenc-darwin fenc-windows.exe
|