-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
28 lines (23 loc) · 1.14 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
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: youkim <[email protected]> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2022/05/04 13:12:13 by youkim #+# #+# #
# Updated: 2022/05/04 13:12:14 by youkim ### ########.fr #
# #
# **************************************************************************** #
NAME := cub3D
CFLAGS = -Wall -Wextra -Werror -Wpedantic -std=c99
# Flags
include config/flags.mk
# Packages
include config/packages.mk
# Dependencies
include config/dependancies.mk
# Rules
include config/mandatory.mk
include config/custom.mk
include config/test.mk