aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 7 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index f3bfbd5..c8a6df4 100644
--- a/Makefile
+++ b/Makefile
@@ -6,18 +6,17 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/02/03 04:14:24 by cacharle #+# #+# #
-# Updated: 2020/04/03 13:50:17 by charles ### ########.fr #
+# Updated: 2020/06/12 09:17:28 by charles ### ########.fr #
# #
# **************************************************************************** #
RM = rm -f
-MAKE = make
+MAKE = make --no-print-directory
+JOBS = 4
DOXYGEN = doxygen
DOXYGEN_FILE = Doxyfile
DOC_DIR = doc
-TESTEXEC = test.sh
-
LIBFTDIR = libft
INCLUDEDIR = include
SRCDIR = src
@@ -37,11 +36,11 @@ LDFLAGS = -L$(LIBFTDIR) -lft
NAME = minishell
.PHONY: all
-all: libft_all prebuild $(NAME)
+all: libft_all prebuild
+ @$(MAKE) -j$(JOBS) allnopre
-.PHONY: test
-test:
- @./$(TESTEXEC)
+.PHONY: allnopre
+allnopre: $(NAME)
.PHONY: prebuild
prebuild: