mirror of
https://github.com/mudler/LocalAI
synced 2026-05-03 21:38:32 +00:00
17 lines
241 B
Makefile
17 lines
241 B
Makefile
|
|
.DEFAULT_GOAL := install
|
||
|
|
|
||
|
|
.PHONY: install
|
||
|
|
install:
|
||
|
|
bash install.sh
|
||
|
|
|
||
|
|
.PHONY: protogen-clean
|
||
|
|
protogen-clean:
|
||
|
|
$(RM) backend_pb2_grpc.py backend_pb2.py
|
||
|
|
|
||
|
|
.PHONY: clean
|
||
|
|
clean: protogen-clean
|
||
|
|
rm -rf venv __pycache__
|
||
|
|
|
||
|
|
test: install
|
||
|
|
bash test.sh
|