Skip to content

Commit 4a6ff5d

Browse files
FEAT: Addng the dataset_descriptor rule to Makefile
1 parent 35be2da commit 4a6ff5d

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
@@ -18,6 +18,10 @@ main: $(VENV)
1818
clear;
1919
time $(PYTHON_VENV) ./main.py
2020

21+
dataset_descriptor: $(VENV)
22+
clear;
23+
time $(PYTHON_VENV) ./dataset_descriptor.py
24+
2125
# Create virtual environment and install dependencies
2226
$(VENV):
2327
@echo "Using Python at: $(PYTHON)"
@@ -38,4 +42,4 @@ clean:
3842
find . -type f -name '*.pyc' -delete
3943
find . -type d -name '__pycache__' -delete
4044

41-
.PHONY: main clean dependencies generate_requirements
45+
.PHONY: main clean dependencies generate_requirements dataset_descriptor

0 commit comments

Comments
 (0)