summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-01-03 09:59:33 +0300
committerGrail Finder <wohilas@gmail.com>2026-01-03 09:59:33 +0300
commitaeb2700d14c23c175376e2a5749295cd9a5d72c7 (patch)
treee34a5860da644b2d4747e4091f23805a63ede180 /Makefile
parent6b875a2782e77afe6595b47d069a217fa2702eb1 (diff)
Refactor: building binary with no extra
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b845e6f..fff1acf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs
+.PHONY: setconfig run lint setup-whisper build-whisper download-whisper-model docker-up docker-down docker-logs noextra-run noextra-server
run: setconfig
go build -o gf-lt && ./gf-lt
@@ -6,6 +6,12 @@ run: setconfig
server: setconfig
go build -o gf-lt && ./gf-lt -port 3333
+noextra-run: setconfig
+ go build -tags '!extra' -o gf-lt && ./gf-lt
+
+noextra-server: setconfig
+ go build -tags '!extra' -o gf-lt && ./gf-lt -port 3333
+
setconfig:
find config.toml &>/dev/null || cp config.example.toml config.toml