mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-30 17:00:57 -06:00
9 lines
159 B
Makefile
9 lines
159 B
Makefile
GOOS := linux ## only linux is supported
|
|
GOARCH := $(shell go env GOARCH)
|
|
|
|
.PHONY: build
|
|
build:
|
|
GOOS=$(GOOS) \
|
|
GOARCH=$(GOARCH) \
|
|
go build -o bin/ocwrapper
|