mirror of
https://github.com/mudler/LocalAI.git
synced 2026-04-01 13:42:20 -04:00
12 lines
194 B
Makefile
12 lines
194 B
Makefile
GOCMD=go
|
|
|
|
local-store:
|
|
CGO_ENABLED=0 $(GOCMD) build -ldflags "$(LD_FLAGS)" -tags "$(GO_TAGS)" -o local-store ./
|
|
|
|
package:
|
|
bash package.sh
|
|
|
|
build: local-store package
|
|
|
|
clean:
|
|
rm -f local-store
|