diff --git a/Makefile b/Makefile index fff1acf..eb9c574 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ .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 + go build -tags extra -o gf-lt && ./gf-lt server: setconfig - go build -o gf-lt && ./gf-lt -port 3333 + go build -tags extra -o gf-lt && ./gf-lt -port 3333 noextra-run: setconfig go build -tags '!extra' -o gf-lt && ./gf-lt