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

  1. # Fenc Makefile
  2. default:
  3. $(info build)
  4. $(info clean)
  5. build:
  6. GOOS=linux GOARCH=amd64 go build -o fenc-linux fenc.go
  7. GOOS=darwin GOARCH=amd64 go build -o fenc-darwin fenc.go
  8. GOOS=windows GOARCH=amd64 go build -o fenc-windows.exe fenc.go
  9. clean:
  10. rm fenc-linux fenc-darwin fenc-windows.exe