http-boot-server/bootserver/Makefile

14 lines
178 B
Makefile
Raw Permalink Normal View History

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