-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.mk
More file actions
65 lines (50 loc) · 1.94 KB
/
init.mk
File metadata and controls
65 lines (50 loc) · 1.94 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# **************************************************************************** #
# #
# ::: :::::::: #
# init.mk :+: :+: :+: #
# +:+ +:+ +:+ #
# By: ldevelle <ldevelle@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2018/11/12 15:04:16 by ldevelle #+# #+# #
# Updated: 2020/02/24 08:39:34 by ezalos ### ########.fr #
# #
# **************************************************************************** #
#It will be the name of your executable
NAME = crypto
TESTEUR = test
#Change to 'y' if this project needs to be a library
LIB_PRJCT = n
#These are your basic compilation flags
CFLAGS = -Wall -Wextra -Werror
#USERNAME used for the auteur file
login = amartino
DIR_OBJ = ./objs/
##########################
## ##
## GITHUB ##
## ##
##########################
#Allow to automatically make the first push to the project
github_username = Kipitup
github_project = $(NAME)
GIT_REPO = https://github.com/$(github_username)/$(github_project).git
#Do you wish to have to confirm your push in 'make git' ?
GIT_VALID = false
##########################
## ##
## LIBRAIRIES ##
## ##
##########################
LIB_DIR = ./libft
LIB = $(LIB_DIR)/libft.a -lm
##########################
## ##
## INCLUDES ##
## ##
##########################
HEAD_DIR = ./includes/
HEADERS = $(AUTO_HEAD)\
head.h
HEADERS_DIRECTORIES = -I./$(HEAD_DIR)\
-I./$(LIB_DIR)/includes
# HEAD_PATH = $(HEAD_DIR)/$(HEAD)