From 3bb9e2b83efb5e551aafb6362ed614718cec67c2 Mon Sep 17 00:00:00 2001 From: Alphacharge Date: Mon, 28 Aug 2023 14:24:20 +0200 Subject: [PATCH] removed brew for mac os version, because cmake glfw and readline are now installed on mac os machines --- Makefile | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index ece9577..2b917b6 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: rbetz +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/06/02 16:33:15 by rbetz #+# #+# # -# Updated: 2023/06/02 18:13:51 by rbetz ### ########.fr # +# Updated: 2023/08/28 14:22:12 by rbetz ### ########.fr # # # # **************************************************************************** # @@ -106,16 +106,7 @@ endif ### ### COMPABILITY ### ### #Mac Compability for our programm ifeq ($(OS), Darwin) -ifeq ($(shell which brew), ) - @echo -e "$(BLUE)Install brew ...$(WHITE)" - @/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" -endif -ifeq ($(shell which cmake), ) - @echo "$(BLUE)Install cmake and glfw...$(WHITE)" - @brew install -q cmake glfw -endif - BREW_D := $(shell which brew | cut -d'/' -f1-4) - LIB += -L $(BREW_D)/opt/glfw/lib -l glfw + LIB += -l glfw endif #Linux Compability for our programm