-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
27 lines (23 loc) · 1.16 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: rimney < rimney@student.1337.ma> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/01/11 23:53:37 by rimney #+# #+# #
# Updated: 2023/02/07 17:20:10 by rimney ### ########.fr #
# #
# **************************************************************************** #
VNAME = containers
MNAME = map
SNAME = stack
# V_SRCS = Vector/vector.hpp
MAIN_SRCS = main.cpp
FLAGS = -Wall -Wextra -Werror
all :
@echo "Please Select One Of The Options"
@echo "make vector"
vector :
c++ $(FLAGS) $(V_SRCS) $(MAIN_SRCS) -o $(VNAME) -g -fsanitize=address
.PHONY : vector