From dfbafce6506fe5c47b0e60289a9d4629e502c9ac Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 9 Feb 2020 03:33:24 +0100 Subject: Added common files --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3ebc3ac --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +# **************************************************************************** # +# # +# ::: :::::::: # +# Makefile :+: :+: :+: # +# +:+ +:+ +:+ # +# By: cacharle +#+ +:+ +#+ # +# +#+#+#+#+#+ +#+ # +# Created: 2020/02/09 03:31:28 by cacharle #+# #+# # +# Updated: 2020/02/09 03:32:56 by cacharle ### ########.fr # +# # +# **************************************************************************** # + +MAKE = make +MAKE_ARGS = -no-print-child + +PHILO_ONE_DIR = philo_one +PHILO_TWO_DIR = philo_two +PHILO_THREE_DIR = philo_three + +philo_one: + $(MAKE) $(MAKE_ARGS) $(PHILO_ONE_DIR) + +philo_two: + $(MAKE) $(MAKE_ARGS) $(PHILO_TWO_DIR) + +philo_two: + $(MAKE) $(MAKE_ARGS) $(PHILO_THREE_DIR) -- cgit