Skip to content

Commit 58a6828

Browse files
REFACTOR: Adding rhe RFE Rule to Makefile
1 parent 4a49121 commit 58a6828

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ dataset_descriptor: $(VENV)
2222
clear;
2323
time $(PYTHON_VENV) ./dataset_descriptor.py
2424

25+
rfe: $(VENV)
26+
clear;
27+
time $(PYTHON_VENV) ./rfe.py
28+
2529
# Create virtual environment and install dependencies
2630
$(VENV):
2731
@echo "Using Python at: $(PYTHON)"
@@ -42,4 +46,4 @@ clean:
4246
find . -type f -name '*.pyc' -delete
4347
find . -type d -name '__pycache__' -delete
4448

45-
.PHONY: main clean dependencies generate_requirements dataset_descriptor
49+
.PHONY: all main clean dependencies generate_requirements dataset_descriptor rfe

0 commit comments

Comments
 (0)