This repository has been archived on 2025-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Uftp/Makefile
2023-12-11 12:04:20 +01:00

12 lines
224 B
Makefile

build:
go build -o bin/uftp cmd/uftp/main.go
server:
go run cmd/uftp/main.go server
test:
go run cmd/uftp/main.go client testFile 0.0.0.0
win:
GOOS=windows GOARCH=amd64 go build -o bin/app-amd64.exe cmd/uftp/main.go