http-boot-server/bootserver/Makefile
Melora Hugues 0b6bbce7d5
All checks were successful
continuous-integration/drone/push Build is passing
Add udp listener
2023-07-29 21:23:36 +02:00

13 lines
178 B
Makefile

.PHONY: build test
build:
go build -o build/
buildarm:
env GOOS=linux GOARCH=arm64 go build -o build/bootserver_arm
test:
go test -v ./...
run: build
./build/boot_server