File size: 394 Bytes
0f07ba7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.PHONY: pocket-tts
pocket-tts:
	bash install.sh

.PHONY: run
run: pocket-tts
	@echo "Running pocket-tts..."
	bash run.sh
	@echo "pocket-tts run."

.PHONY: test
test: pocket-tts
	@echo "Testing pocket-tts..."
	bash test.sh
	@echo "pocket-tts tested."

.PHONY: protogen-clean
protogen-clean:
	$(RM) backend_pb2_grpc.py backend_pb2.py

.PHONY: clean
clean: protogen-clean
	rm -rf venv __pycache__