file-store/Makefile

11 lines
224 B
Makefile
Raw Normal View History

2022-08-24 02:54:01 +00:00
.PHONY: all build test
all: build
build:
GOOS=windows GOARCH=amd64 go build -o fls-windows-amd64.exe .
GOOS=linux GOARCH=amd64 go build -o fls-linux-amd64 .
test:
go test git.keganmyers.com/terribleplan/file-store/...