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

11 lines
203 B
Makefile

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