-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
32 lines (26 loc) · 1.05 KB
/
Makefile
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
26
27
28
29
30
31
32
# | |
# --+----------------------------------------------------------+--
# | Code by : yasserbdj96 |
# | Email : [email protected] |
# | Github : https://github.com/yasserbdj96 |
# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
# --+----------------------------------------------------------+--
# | all posts #yasserbdj96 ,all views my own. |
# --+----------------------------------------------------------+--
# | |
#make run con="<encode/decode>" pass="<PASSWORD>" text="<TEXT>"
#START{
VENV = venv
PYTHON = $(VENV)/bin/python3
PIP = $(VENV)/bin/pip
RUN = run.py $(con) $(pass) $(text)
run: $(VENV)/bin/activate
$(PYTHON) $(RUN)
$(VENV)/bin/activate: requirements.txt
python3 -m venv $(VENV)
$(PIP) install -r ./requirements.txt
$(PIP) install -r ./requirements-pypi.txt
clean:
rm -rf ashar/__pycache__
rm -rf $(VENV)
#}END.