Skip to content

Commit 80d04b3

Browse files
WIP, debugging chunk 8
1 parent 4ffa766 commit 80d04b3

19 files changed

Lines changed: 5122 additions & 216 deletions

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"go.useLanguageServer": true,
3+
"go.goroot": "/home/brolygon/go-workspace/pkg/mod/golang.org/toolchain@v0.0.1-go1.25.7.linux-amd64",
4+
"go.gopath": "/home/brolygon/go-workspace",
5+
"gopls": {
6+
"build.buildFlags": [],
7+
"build.directoryFilters": [
8+
"-**/node_modules"
9+
],
10+
"build.env": {
11+
"GO111MODULE": "on",
12+
"GOROOT": "/home/brolygon/go-workspace/pkg/mod/golang.org/toolchain@v0.0.1-go1.25.7.linux-amd64",
13+
"GOPATH": "/home/brolygon/go-workspace"
14+
}
15+
}
16+
}

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,14 @@ build-aggkit: ## Builds aggkit binary
7777
GIN_MODE=release $(GOENVVARS) go build -ldflags "all=$(LDFLAGS)" -o $(GOBIN)/$(GOBINARY) $(GOCMD)
7878

7979
.PHONY: build-tools
80-
build-tools: ## Builds the tools
80+
build-tools: $(GOBIN)/aggsender_find_imported_bridge $(GOBIN)/remove_ger ## Builds the tools
81+
82+
$(GOBIN)/aggsender_find_imported_bridge: ## Build aggsender_find_imported_bridge tool
8183
$(GOENVVARS) go build -o $(GOBIN)/aggsender_find_imported_bridge ./tools/aggsender_find_imported_bridge
8284

85+
$(GOBIN)/remove_ger: ## Build remove_ger tool
86+
$(GOENVVARS) go build -o $(GOBIN)/remove_ger ./tools/remove_ger/cmd
87+
8388
.PHONY: build-docker
8489
build-docker: ## Builds a docker image with the aggkit binary
8590
docker build -t aggkit:local -f ./Dockerfile .

0 commit comments

Comments
 (0)