mirror of
https://github.com/mudler/LocalAI.git
synced 2026-03-04 06:58:59 -05:00
12 lines
194 B
Makefile
12 lines
194 B
Makefile
GOCMD=go
|
|
|
|
huggingface:
|
|
CGO_ENABLED=0 $(GOCMD) build -ldflags "$(LD_FLAGS)" -tags "$(GO_TAGS)" -o huggingface ./
|
|
|
|
package:
|
|
bash package.sh
|
|
|
|
build: huggingface package
|
|
|
|
clean:
|
|
rm -f huggingface
|