Skip to content

Commit 7b4b852

Browse files
committed
Fix typo (.PONY -> .PHONY) in python backend makefiles
Signed-off-by: Marcus Köhler <[email protected]>
1 parent bbc4779 commit 7b4b852

File tree

9 files changed

+26
-26
lines changed

9 files changed

+26
-26
lines changed

backend/python/autogptq/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PONY: autogptq
1+
.PHONY: autogptq
22
autogptq:
33
@echo "Creating virtual environment..."
44
@conda env create --name autogptq --file autogptq.yml

backend/python/bark/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
.PONY: ttsbark
1+
.PHONY: ttsbark
22
ttsbark:
33
@echo "Creating virtual environment..."
44
@conda env create --name ttsbark --file ttsbark.yml
5-
@echo "Virtual environment created."
5+
@echo "Virtual environment created."

backend/python/diffusers/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
.PONY: diffusers
1+
.PHONY: diffusers
22
diffusers:
33
@echo "Creating virtual environment..."
44
@conda env create --name diffusers --file diffusers.yml
55
@echo "Virtual environment created."
66

7-
.PONY: run
7+
.PHONY: run
88
run:
99
@echo "Running diffusers..."
1010
bash run.sh
11-
@echo "Diffusers run."
11+
@echo "Diffusers run."

backend/python/exllama/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
.PONY: exllama
1+
.PHONY: exllama
22
exllama:
33
@echo "Creating virtual environment..."
44
@conda env create --name exllama --file exllama.yml
55
@echo "Virtual environment created."
66

7-
.PONY: run
7+
.PHONY: run
88
run:
99
@echo "Running exllama..."
1010
bash run.sh
11-
@echo "exllama run."
11+
@echo "exllama run."

backend/python/petals/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
.PONY: petals
1+
.PHONY: petals
22
petals:
33
@echo "Creating virtual environment..."
44
@conda env create --name petals --file petals.yml
55
@echo "Virtual environment created."
66

7-
.PONY: run
7+
.PHONY: run
88
run:
99
@echo "Running petals..."
1010
bash run.sh
11-
@echo "petals run."
11+
@echo "petals run."
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
.PONY: sentencetransformers
1+
.PHONY: sentencetransformers
22
sentencetransformers:
33
@echo "Creating virtual environment..."
44
@conda env create --name sentencetransformers --file sentencetransformers.yml
55
@echo "Virtual environment created."
66

7-
.PONY: run
7+
.PHONY: run
88
run:
99
@echo "Running sentencetransformers..."
1010
bash run.sh
1111
@echo "sentencetransformers run."
1212

1313
# It is not working well by using command line. It only6 works with IDE like VSCode.
14-
.PONY: test
14+
.PHONY: test
1515
test:
1616
@echo "Testing sentencetransformers..."
1717
bash test.sh
18-
@echo "sentencetransformers tested."
18+
@echo "sentencetransformers tested."

backend/python/transformers/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
.PONY: transformers
1+
.PHONY: transformers
22
transformers:
33
@echo "Creating virtual environment..."
44
@conda env create --name transformers --file transformers.yml
55
@echo "Virtual environment created."
66

7-
.PONY: run
7+
.PHONY: run
88
run:
99
@echo "Running transformers..."
1010
bash run.sh
1111
@echo "transformers run."
1212

1313
# It is not working well by using command line. It only6 works with IDE like VSCode.
14-
.PONY: test
14+
.PHONY: test
1515
test:
1616
@echo "Testing transformers..."
1717
bash test.sh
18-
@echo "transformers tested."
18+
@echo "transformers tested."

backend/python/vall-e-x/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
.PONY: ttsvalle
1+
.PHONY: ttsvalle
22
ttsvalle:
33
@echo "Creating virtual environment..."
44
@conda env create --name ttsvalle --file ttsvalle.yml
55
@echo "Virtual environment created."
66

7-
.PONY: run
7+
.PHONY: run
88
run:
99
@echo "Running ttsvalle..."
1010
bash run.sh
11-
@echo "ttsvalle run."
11+
@echo "ttsvalle run."

backend/python/vllm/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
.PONY: vllm
1+
.PHONY: vllm
22
vllm:
33
@echo "Creating virtual environment..."
44
@conda env create --name vllm --file vllm.yml
55
@echo "Virtual environment created."
66

7-
.PONY: run
7+
.PHONY: run
88
run:
99
@echo "Running vllm..."
1010
bash run.sh
11-
@echo "vllm run."
11+
@echo "vllm run."

0 commit comments

Comments
 (0)