mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-26 15:50:47 -05:00
10 lines
173 B
Makefile
10 lines
173 B
Makefile
GOOS := linux ## only linux is supported
|
|
GOARCH := $(shell go env GOARCH)
|
|
|
|
.PHONY: build
|
|
build:
|
|
GOWORK=off \
|
|
GOOS=$(GOOS) \
|
|
GOARCH=$(GOARCH) \
|
|
go build -o bin/ocwrapper
|