mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
16 lines
236 B
Makefile
16 lines
236 B
Makefile
|
.PHONY: mamba
|
||
|
mamba:
|
||
|
$(MAKE) -C ../common-env/transformers
|
||
|
bash install.sh
|
||
|
|
||
|
.PHONY: run
|
||
|
run:
|
||
|
@echo "Running mamba..."
|
||
|
bash run.sh
|
||
|
@echo "mamba run."
|
||
|
|
||
|
.PHONY: test
|
||
|
test:
|
||
|
@echo "Testing mamba..."
|
||
|
bash test.sh
|
||
|
@echo "mamba tested."
|