-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
39 lines (36 loc) · 2.43 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
33
34
35
36
37
38
39
# ************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: ahabachi <ahabachi@student.1337.ma> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/05/21 09:10:31 by ahabachi #+# #+# #
# Updated: 2023/05/21 09:12:58 by ahabachi ### ########.fr #
# #
# ************************************************************************** #
# #
# █████████ ██████████ ██████████ ██████████ #
# ██ ██ ██ ██ ██ ██ #
# ██ ██ ██ ██ ██ #
# ██ ██ ██ ██ #
# ██ ██████████ ██████████ ██ #
# ██ ██ ██ ██ #
# ██ ██ ██ ██ #
# ██ ██ ██ ██ #
# ████████ ██████████ ██████████ ██ #
# #
# ************************************************************************** #
all:
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
python get-pip.py && rm -rf get-pip.py
python -m pip install --upgrade pip
python -m pip install requests
clear
python main.py
fclean:
rm -rf assets
push:
@git add .
@git commit -m "committed on '`date`' by '`whoami`', hostname = '`hostname`'"
@git push