aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-04-22 13:43:00 +0200
committerCharles <sircharlesaze@gmail.com>2020-04-22 13:43:00 +0200
commit3c2c3a07396c001f51eac8d0fd0fc84e83eb127b (patch)
tree7c646f128d97784fba9fd76cf8bb758a9b965c76 /Makefile
parent2c5abe421b7a1b92081e38f6b1f04d407fcba834 (diff)
downloadphilosophers-3c2c3a07396c001f51eac8d0fd0fc84e83eb127b.tar.gz
philosophers-3c2c3a07396c001f51eac8d0fd0fc84e83eb127b.tar.bz2
philosophers-3c2c3a07396c001f51eac8d0fd0fc84e83eb127b.zip
philo_one refactoring without common lib
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 3a9fd90..73b011a 100644
--- a/Makefile
+++ b/Makefile
@@ -6,28 +6,22 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/02/09 03:31:28 by cacharle #+# #+# #
-# Updated: 2020/02/14 22:44:40 by cacharle ### ########.fr #
+# Updated: 2020/04/22 13:41:57 by charles ### ########.fr #
# #
# **************************************************************************** #
MAKE = make
MAKE_ARGS = --no-print-directory
-COMMON_DIR = common
PHILO_ONE_DIR = philo_one
PHILO_TWO_DIR = philo_two
PHILO_THREE_DIR = philo_three
help:
- @echo "make common - build common lib"
@echo "make philo_one - compile philo_one"
@echo "make philo_two - compile philo_one"
@echo "make philo_three - compile philo_one"
-.PHONY: common
-common:
- $(MAKE) $(MAKE_ARGS) -C $(COMMON_DIR)
-
.PHONY: philo_one
philo_one:
$(MAKE) $(MAKE_ARGS) -C $(PHILO_ONE_DIR)