summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-04-14 19:53:08 +0200
committerewy <ewy0@protonmail.com>2026-04-14 19:53:08 +0200
commit4ef16c5b359058159e646d979c15f4d535f1a21a (patch)
tree521f2fac3cfff1fba9c1f24ada6d1e5788ed6bf4 /main.go
parent1c96b29760b6d1f4af281d29274cf674a5573ada (diff)
add make indexer
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index 35acc94..26955b2 100644
--- a/main.go
+++ b/main.go
@@ -11,6 +11,7 @@ import (
"pik/menu"
"pik/model"
"pik/run"
+ "pik/runner/gnumake"
"pik/runner/just"
"pik/runner/python"
"pik/runner/shell"
@@ -25,6 +26,7 @@ var initializers = []model.HasInit{
var indexers = []model.Indexer{
pikdex.Indexer,
just.Indexer,
+ gnumake.Indexer,
}
var runners = []model.Runner{