summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2026-01-30 18:04:23 -0700
committermo khan <mo@mokhan.ca>2026-01-30 18:04:23 -0700
commitd707ce9185089e968a5b826058bb530472daae13 (patch)
tree07c34bab6298f3a9d5a5cfc9af4774ed27596deb /Makefile
parentff213f4113434fee4ddba1f0874d3c2c99b4f9de (diff)
refactor: move main.go to cmd/gitmal/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 352f848..7b6b80e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
.PHONY: build test clean run release
build:
- go build -o gitmal .
+ go build -o gitmal ./cmd/gitmal
test:
go test ./...
@@ -13,4 +13,4 @@ clean:
rm -rf gitmal output
release:
- CGO_ENABLED=0 go build -o gitmal .
+ CGO_ENABLED=0 go build -o gitmal ./cmd/gitmal