http-boot-server/bootserver/Makefile

14 lines
178 B
Makefile
Raw Permalink Normal View History

2023-07-23 10:49:57 +02:00
.PHONY: build test
build:
go build -o build/
2023-07-29 21:23:36 +02:00
buildarm:
env GOOS=linux GOARCH=arm64 go build -o build/bootserver_arm
2023-07-23 10:49:57 +02:00
test:
go test -v ./...
run: build
2023-07-23 10:54:49 +02:00
./build/boot_server