forked from JCluzet/42_EXAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
33 lines (26 loc) · 1.2 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: nnuno-ca <nnuno-ca@student.42porto.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/04/21 01:05:24 by jcluzet #+# #+# #
# Updated: 2023/01/13 02:33:46 by nnuno-ca ### ########.fr #
# #
# **************************************************************************** #
all:
@bash .system/launch.sh all
re: clean
@bash .system/launch.sh
gradejustinstall:
@bash .system/launch.sh gradejustinstall
grade: clean
@bash .system/launch.sh grade
clean:
@rm -rf .system/a.out
@rm -rf .system/a.out.dSYM
fclean:
@rm .system/a.out
help:
@echo "\x1B[37mType \x1B[32m> make \x1B[37mto start the exam"