mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
11 lines
193 B
Makefile
11 lines
193 B
Makefile
.PHONY: all deps clean build
|
|
all: deps clean build
|
|
deps:
|
|
go get github.com/tencentyun/scf-go-lib/cloudfunction
|
|
|
|
clean:
|
|
rm -rf ./index
|
|
|
|
build:
|
|
GOOS=linux GOARCH=amd64 go build -o ./index .
|