aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-06-09 16:09:56 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2025-06-09 16:09:56 -0400
commitc3d812262761c140316f5501783f8302191e5053 (patch)
tree5c70e8c340ef24275740f2bfe7b7e21392c1a56b /makefile
parentb09bbdae45e0c3a3b3f00c6a677dd524464ddf67 (diff)
Add debug shell
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/makefile b/makefile
index d3ff994..4874d04 100644
--- a/makefile
+++ b/makefile
@@ -9,6 +9,8 @@ all: $(BINS)
atlas: $(SRC)
go build -o $@ ./cmd/atlas.go
+query_shell: $(wildcard ./debug_shell//*.go) $(wildcard pkg/*/*.go)
+ go build -o $@ $(wildcard ./debug_shell/*.go)
test:
go test ./...