You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
294 B

# 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