aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-15 17:22:05 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-15 17:22:05 +0100
commit9e2486ed29a464d5ecbb27d02cb6dd71715356bb (patch)
treea19b352d5c45e72859b95c028cb52c0a721cae53 /Makefile
parentGNU libx (diff)
download42-cub3d-9e2486ed29a464d5ecbb27d02cb6dd71715356bb.tar.gz
42-cub3d-9e2486ed29a464d5ecbb27d02cb6dd71715356bb.tar.bz2
42-cub3d-9e2486ed29a464d5ecbb27d02cb6dd71715356bb.tar.xz
42-cub3d-9e2486ed29a464d5ecbb27d02cb6dd71715356bb.tar.zst
42-cub3d-9e2486ed29a464d5ecbb27d02cb6dd71715356bb.zip
Back to the GNU C Compiler, tweaked move speed
Diffstat (limited to '')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5feb222..9a5fb36 100644
--- a/Makefile
+++ b/Makefile
@@ -122,7 +122,11 @@ endif
DEBUG = -glldb
FSANITIZE = -fsanitize=address
#--------------------------------------------------------------------------------------------------#
-CC = clang
+ifeq (${OS}, Darwin)
+ CC = clang
+else
+ CC = gcc
+endif
#--------------------------------------------------------------------------------------------------#
CFLAGS = -std=c89
CFLAGS += -Wall
@@ -186,6 +190,9 @@ endif
#--------------------------------------------------------------------------------------------------#
fclean: clean
@$(MAKE) --no-print-directory -C ${LFT_DIR} fclean
+ifeq (${OS}, Linux)
+ ${RM} ${MLX_GNU_DIR}libmlx_x86_64.a
+endif
${RM} ${NAME}
${RM} ${NAME}.dSYM
#--------------------------------------------------------------------------------------------------#