aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRudy Bousset <rbousset@z2r4p3.le-101.fr>2020-02-09 19:28:13 +0100
committerRudy Bousset <rbousset@z2r4p3.le-101.fr>2020-02-09 19:28:13 +0100
commit143332c88e5e5366f9d5db28bbccf606945c2249 (patch)
tree7e0dd6b837991add9253ea8846cb7c299778053f /Makefile
parentSecured sides with S key (diff)
download42-cub3d-143332c88e5e5366f9d5db28bbccf606945c2249.tar.gz
42-cub3d-143332c88e5e5366f9d5db28bbccf606945c2249.tar.bz2
42-cub3d-143332c88e5e5366f9d5db28bbccf606945c2249.tar.xz
42-cub3d-143332c88e5e5366f9d5db28bbccf606945c2249.tar.zst
42-cub3d-143332c88e5e5366f9d5db28bbccf606945c2249.zip
Added back --jobs in Makefile
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 21e0f3f..64d0024 100644
--- a/Makefile
+++ b/Makefile
@@ -106,12 +106,12 @@ all:
@exit
ifeq (${OS}, Darwin)
- @$(MAKE) --no-print-directory -C ${MLX_DIR} all
+ @$(MAKE) --job 5 --no-print-directory -C ${MLX_DIR} all
endif
ifdef ASAN
- @$(MAKE) --no-print-directory -C ${LFT_DIR} all ASAN=1
+ @$(MAKE) --job 5 --no-print-directory -C ${LFT_DIR} all ASAN=1
else
- @$(MAKE) --no-print-directory -C ${LFT_DIR} all
+ @$(MAKE) --job 5 --no-print-directory -C ${LFT_DIR} all
endif
@$(MAKE) ${NAME}
#------------------------------------------------------------------------------#