Skip to content

Commit 694c09f

Browse files
committed
add local target to makefile
1 parent e0192ab commit 694c09f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ alpine:
88
linux:
99
GOOS=linux GOARCH=amd64 go build -o bin/apiserver cmd/apiserver/main.go
1010
GOOS=linux GOARCH=amd64 go build -o bin/gateway-agent cmd/gateway-agent/main.go
11+
GOOS=linux GOARCH=amd64 go build -o bin/client-agent cmd/client-agent/main.go
12+
13+
local:
14+
go build -o bin/apiserver cmd/apiserver/main.go
15+
go build -o bin/gateway-agent cmd/gateway-agent/main.go
16+
go build -o bin/client-agent cmd/client-agent/main.go
1117

1218
local-apiserver:
1319
go run ./cmd/apiserver/main.go --db-connection-uri=${DB_CONNECTION_URI} || echo "forget to export DB_CONNECTION_URL=<DSN> ?"

0 commit comments

Comments
 (0)