aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-06-30 17:18:45 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2025-06-30 18:54:51 -0400
commita4d86693394ba9b181b5928c1c6e8c31c9bb2b64 (patch)
tree8088d8d7c8c835b3e4c3590f1e3875d8e732d8cb /makefile
parent3168673bc2b57909213287a99b6151b4f1e0c439 (diff)
Implement compiled query execution
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 6126ea3..c778a21 100644
--- a/makefile
+++ b/makefile
@@ -7,7 +7,7 @@ INSTALL_PATH := ~/.local/bin
all: $(BINS)
atlas: $(SRC)
- go build -o $@ ./cmd/atlas.go
+ go build -o $@ $(wildcard ./cmd/*.go)
test:
go test ./...