forked from Whomrx666/Track-Ripper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (20 loc) · 659 Bytes
/
Makefile
File metadata and controls
25 lines (20 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
INSTALL_SCRIPT = install.sh
PYTHON_SCRIPT = Track-Ripper.py
all: install run
install:
@echo "Running install.sh to install dependencies..."
@chmod +x $(INSTALL_SCRIPT)
@./$(INSTALL_SCRIPT)
run:
@echo "Running Track-Ripper.py..."
@python3 $(PYTHON_SCRIPT)
clean:
@echo "Cleaning temporary files..."
help:
@echo "Makefile for running Track-Ripper By Mr.X"
@echo "Available targets:"
@echo " all : Install dependencies and run main.py"
@echo " install : Install dependencies using install.sh"
@echo " run : Run Track-Ripper.py"
@echo " clean : Clean temporary files (if any)"
@echo " help : Display this information"