-
Notifications
You must be signed in to change notification settings - Fork 1
/
Settings.mk
39 lines (32 loc) · 853 Bytes
/
Settings.mk
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
#------------------------------------------------------------------------------#
# PROJECT VARIABLES #
#------------------------------------------------------------------------------#
# Executable name
NAME = cub3D
# Arguments to call the executable with by default
ARGS = ./levels/map_5.cub
# Directory names
SRCDIR = src/
OBJDIR = bin/
TSTDIR = tests/
SUBDIRS = \
# Source file names (prefix their subdir if needed)
FILES = casters \
checkers \
coorders \
doers \
drawers \
freeers \
getters \
hookers \
initializers \
masters \
mathers \
movers \
readers \
texturers \
tilers \
# Libraries (.a files) to include for compilation
LIBS = ./Libft42/libft.a \
./MLX42/build/libmlx42.a \
LIBX = -lglfw -L "/Users/$$USER/.brew/opt/glfw/lib/"