11 lines
224 B
Makefile
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/...
|