file-store/Makefile
2022-08-23 21:56:32 -05:00

11 lines
224 B
Makefile

.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/...