-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.mk
More file actions
40 lines (30 loc) · 1.59 KB
/
Copy pathsettings.mk
File metadata and controls
40 lines (30 loc) · 1.59 KB
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
40
# **************************************************************************** #
# #
# ::: :::::::: #
# settings.mk :+: :+: :+: #
# +:+ +:+ +:+ #
# By: rotrojan <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2021/10/21 21:06:11 by rotrojan #+# #+# #
# Updated: 2022/03/10 23:03:38 by rotrojan ### ########.fr #
# #
# **************************************************************************** #
# The name of the binary
# The list of the all the sources, because $(wildcard *.c) is too dangerous
SRCS = my_main.cpp
# The file where make will look for all the sources (in addition to the root
# directory of the Makefile)
SRCS_DIR = .
# The libraries used
LIBS =
# The directory where all object and dependency files will be compiled
OBJS_DIR = .objs
# The file where make will look for all the header files
INCLUDES_DIR = include
# The C++ compiler
CXX = c++
# The C++ compilation flags
CXXFLAGS = -Wall -Wextra -Werror -std=c++98 -pedantic
# The characters and the length of the progress bar will adjust automatically
PROGRESS_BAR = -------------------------------------------------------------------
FILLING_CHAR = \#