From b786a0fa0470d8c4c3aa9afa94afc2d6a3d0ef11 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Tue, 21 Jan 2025 19:58:04 -0500 Subject: [PATCH] Unify Makefile once again --- 01_text_adventure/Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/01_text_adventure/Makefile b/01_text_adventure/Makefile index 3e00620..06e9a96 100644 --- a/01_text_adventure/Makefile +++ b/01_text_adventure/Makefile @@ -1,9 +1,5 @@ CC=gcc -ifeq ($(shell uname),Darwin) - CFLAGS=-Wall -lraylib -lm -lpthread -ldl -lX11 -else - CFLAGS=-Wall -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -endif +CFLAGS=-Wall -lraylib -lm -lpthread -ldl -lX11 .PHONY: clean run