-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
35 lines (26 loc) · 1.15 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: no <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/04/19 05:30:12 by no #+# #+# #
# Updated: 2019/04/19 05:32:03 by no ### ########.fr #
# #
# **************************************************************************** #
all:
cargo build --release
run:
cargo run --release
size13:
cargo run --release --features size13
size15:
cargo run --release --features size15
size17:
cargo run --release --features size17
clean:
cargo clean
fclean: clean
re: fclean all
.PHONY: all clean fclean re